-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
99 lines (84 loc) · 1.66 KB
/
main.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
@import url("https://fonts.google.com/specimen/Manrope");
* {
box-sizing: border-box;
font-family: "Manrope", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: hsl(218, 23%, 16%);
max-width: 100vw;
max-height: 100vh;
}
.container {
position: absolute;
top: 30%;
left: 30%;
background-color:hsl(217, 19%, 24%);
width: 30rem;
height: 18rem;
border-radius: 20px;
}
.advice {
text-align: center;
height: 25%;
display: flex;
justify-content: center;
align-items: center;
font-size: 11px;
white-space: 1px;
color: hsl(193, 38%, 86%);
}
.para {
position: absolute;
left: 10%;
height: 35%;
width: 80%;
text-align: center;
padding-top: 10px;
justify-content: center;
font-family: "Manrope", sans-serif;
color: #ffff;
font-size: 20px;
font-weight: 600;
}
.svg {
position: absolute;
top: 68%;
left: 3%;
width: 97%;
justify-content: center;
align-items: center;
}
.square {
display: flex;
justify-content: center;
align-items: center;
width: 3rem;
height: 3rem;
border-radius: 50%;
position: relative;
top: 12rem;
left: 44%;
background-color: hsl(193, 38%, 86%) ;
border: none;
}
.square:hover {
background-color: hsl(150, 100%, 66%) ;
}
@media only screen and (max-width: 900px) {
body {
background-color: hsl(218, 23%, 16%);
max-width: 100vw;
max-height: 100vh;
}
.container {
position: absolute;
top: 30%;
left: 10%;
background-color:hsl(217, 19%, 24%);
width: 30rem;
height: 18rem;
border-radius: 20px;
}
}