-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (68 loc) · 1.47 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200&display=swap');
* {
font-family: 'Lexend Deca', sans-serif;
}
body {
background-color: hsl(233, 47%, 7%);
}
#main-div {
display: flex;
margin: auto;
width: 900px;
height: 370px;
margin-top: 150px;
background-color: hsl(244, 38%, 16%);
border-radius: 5px;
}
#left-div {
width: 460px;
height: 400px;
}
h1 {
font-family: 'Inter', sans-serif;
color: hsl(0, 0%, 100%);
font-weight: 800;
font-size: 29px;
line-height: 1.25;
max-width: 350px;
word-spacing: 2px;
}
p {
color: hsla(0, 0%, 100%, 0.75);
font-family: 'Inter', sans-serif;
font-size: 12px;
max-width: 300px;
word-spacing: 2px;
line-height: 1.7;
}
#stats {
max-width: 290px;
margin-top: 60px;
line-height: 0;
}
.stat {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 20px;
color: hsl(0, 0%, 100%);
}
.stat-header {
font-family: 'Lexend Deca', sans-serif;
color: hsla(0, 0%, 100%, 0.6);
font-weight: 400;
font-size: 12px;
}
img {
width: 440px;
height: 370px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.f {
filter: invert(10%) sepia(10%) saturate(2200%) hue-rotate(252deg) brightness(60%) contrast(90%);
}
span {
font-family: 'Inter', sans-serif;
color: hsl(277, 64%, 61%);
}