-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (86 loc) · 1.72 KB
/
style.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
97
98
99
100
101
102
103
104
105
106
107
108
body {
margin: 0%;
background-color: #F1f5f8;
}
.containt {
background-color: #222;
color: aliceblue;
margin: auto;
position: relative;
padding: 10px;
top: 42vh;
width: 51vw;
border-radius: 10px;
}
.header {
background-color: #F1f5f8;
align-items: center;
}
.header h1 {
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 25px;
letter-spacing: 6px;
display: inline;
margin-left: 5px;
}
img {
width: 40px;
margin-left: 40vw;
margin-top: 7px;
margin-bottom: -8px;
}
.containt h1 {
color: aliceblue;
padding: 12px 15px;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 35px;
letter-spacing: 6px;
display: inline;
}
p {
display: inline;
padding: 0px;
color: hsl(205deg 66% 58%);
}
button {
background: transparent;
margin: auto;
width: 170px;
height: 50px;
position: relative;
top: 48vh;
left: 45vw;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 20px;
text-align: center;
border-radius: 10px;
letter-spacing: 4px;
}
button:hover {
background-color: #222;
color: white;
transition: 0.8s;
}
.containt:hover {
box-shadow: 20px 16px 9px -2px #c2e4ec;
transition: 0.5s;
}
@media only screen and (max-width: 768px) {
img {
margin-left: 12vw;
}
.containt {
top: 34vh;
width: 87vw;
}
.containt h1 {
font-size: 20px;
}
button {
top: 40vh;
left: 26vw;
}
}