-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdstyle.css
96 lines (92 loc) · 1.47 KB
/
mdstyle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body{
margin:0px;
background-color:DarkRed;
}
.im{
width:160px;
height:250px;
border-radius:5px;
display:inline-block;
margin:0px 0px 0px 10px;
}
img{
border-radius:5px;
width:100%;
height:100%;
box-shadow:3px 3px 15px black;
transition:0.5s;
}
img:hover{
border-radius:5px;
width:100%;
height:100%;
box-shadow:3px 3px 15px black;
transform:translateY(-10px);
}
p{
text-align:center;
color:white;
font-size:16px;
}
#he{
background-color:black;
height:100px;
}
.sty{
margin:10px;
border-radius:5px;
width:200px;
height:70px;
box-shadow:3px 3px 15px 3px black;
transition:0.7s;
}
.sty:hover{
margin:10px;
background-color:black;
border-radius:5px;
width:200px;
height:70px;
box-shadow:4px 4px 10px 4px red;
transform:translateY(-15px);
}
h4{
color:DarkRed;
display:hidden;
text-shadow:3px 3px 15px 3px black;
transition:0.8s;
}
h4:hover{
display:block;
color:white;
text-shadow:4px 4px 10px 4px white;
transform:translateY(-24px);
}
input[type="text"] {
width: 200px;
height: 40px;
padding: 10px;
color: #fff;
background-color:DarkRed;
border: 2px solid #cc0000;
border-radius: 20px;
box-shadow: 3px 3px 15px black;
font-size: 16px;
outline: none;
transition:0.8s;
}
input[type="text"]::placeholder{
color:white;
opacity: 0.8;
}
input[type="text"]:hover {
width: 260px;
height: 45px;
padding: 10px;
color: #fff;
background-color:#111;
border: 3px solid #cc0000;
border-radius: 20px;
box-shadow: 5px 5px 10px black;
font-size: 20px;
outline: none;
}