-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank-you.css
45 lines (40 loc) · 835 Bytes
/
thank-you.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
* {
box-sizing: border-box;
}
body {
background-color: hsl(216, 12%, 8%);
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
margin: 0;
}
div {
background-color: hsl(213, 19%, 15%);
border-radius: 15px;
width: 400px;
padding: 36px 28px 28px 28px;
text-align: center;
}
h1 {
font-family: 'Overpass', sans-serif;
font-weight: 700;
color: hsl(0, 0%, 100%);
}
svg + p {
color: hsl(25, 97%, 53%);
font-family: 'Overpass', sans-serif;
font-weight: 400;
background-color: hsl(213, 19%, 18%);
border-radius: 20px;
padding: 8px;
margin: 30px 70px 34px 70px;
}
h1 + P {
font-family: 'Overpass', sans-serif;
font-weight: 400;
font-size: 15px;
color: hsl(217, 12%, 63%);
line-height: 24px;
}