-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (95 loc) · 1.77 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
109
110
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap');
* {
box-sizing: border-box;
margin: 0;
}
body {
font-family: 'Manrope', sans-serif;
font-size: 28px;
height: 100vh;
width: 100vw;
background-color: hsl(218, 23%, 16%);
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.container {
background-color: hsl(217, 19%, 24%);
max-width: 540px;
height: auto;
flex-direction: column;
text-align: center;
padding: 48px;
border-radius: 14px;
position: relative;
}
#loading-indicator {
font-size: 14px;
color: red;
}
.advice_id {
color: #52ffa8;
display: block;
margin-bottom: 24px;
letter-spacing: 4px;
font-size: 14px;
}
.advice {
color: #cee3e9;
margin-bottom: 30px;
font-size: 27.2px;
font-weight: 800;
line-height: 1.5;
letter-spacing: 0.05px;
}
.logo {
position: absolute;
bottom: -35px;
left: 50%;
transform: translateX(-50%);
background-color: #52ffa8;
outline: none;
border: 0;
border-radius: 50%;
height: 65px;
width: 65px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.logo:hover {
opacity: .7;
}
footer {
color: #fff;
position: absolute;
bottom: 10px;
font-size: 12px;
text-align: center;
font-weight: 100;
}
footer a {
color: hsl(150, 100%, 66%);
}
@media(max-width:559px) {
.container {
width: 100%;
padding: 1.5rem;
}
.seperator {
width: 100%;
margin-bottom: 15px;
}
.advice_id {
font-size: 11px;
margin-bottom: 10px;
}
.advice {
font-size: 23px;
}
footer {
font-size: 10px;
}
}