-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (53 loc) · 1.28 KB
/
styles.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
:root{
--Dark-cyan: hsl(185, 75%, 39%);
--Very-dark-desaturated-blue: hsl(229, 23%, 23%);
--Dark-grayish-blue: hwb(227 10% 46%);
}
body{background-color:var(--Dark-cyan);
}
.card{position: absolute;
top:50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
border-radius: 20px;
width: 400px;
height: 450px;
text-align: center;
}
.victor{border-radius: 50%;
border: 5px solid white;
position: absolute;
left: 50%;
top:40%;
transform: translate(-50%, -50%);
}
.blue{border-radius: 20px 20px 0 0;
width: 400px;
height: 40%;
}
h1{font-family: "Kumbh Sans";
font-size: 18px;
margin-top: 55px;
color: var(--Very-dark-desaturated-blue);
font-weight: 700;
}
span{font-weight: lighter;}
p{color: var(--Very-dark-desaturated-blue);
font-family: "Kumbh Sans";
}
.london{margin-bottom: 50px;}
.numbers{
position: absolute;
bottom: 0%;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.k{font-weight: 700;
margin-bottom: -10px;
font-size: 20px;
}
@media(max-width:560px){
body{width: 80vw;}
}