-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (74 loc) · 1.49 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
@font-face {
font-family: 'Akzidenz-Grotesk-Bold';
src: url('fonts/Akzidenz-Grotesk-Bold.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Akzidenz-Grotesk-Light';
src: url('fonts/Akzidenz-Grotesk-Light.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Akzidenz-Grotesk-Regular';
src: url('fonts/Akzidenz-Grotesk-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
body, html {
margin: 0;
font-family: 'Akzidenz-Grotesk-Light', sans-serif;
background-color: rgb(245, 247, 244);
color: rgb(0, 0, 0);
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
main {
display: flex;
align-items: center;
flex-direction: column;
}
section {
width: 200px;
height: 200px;
position: relative;
padding: 20px;
}
section svg {
width: 100%;
height: 100%;
}
h1 {
font-family: 'Akzidenz-Grotesk-Bold', sans-serif;
font-size: 2em;
margin: 0;
}
h2 {
font-family: 'Akzidenz-Grotesk-Light', sans-serif;
font-size: 1.5em;
margin: 10px 0 0;
}
h2 span {
font-family: 'Akzidenz-Grotesk-Regular', sans-serif;
}
span {
color: rgb(232, 79, 100);
padding: 5px;
}
@media (max-width: 480px) {
section {
width: 150px;
height: 150px;
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.2em;
}
}