-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (92 loc) · 1.51 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (92 loc) · 1.51 KB
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
@font-face {
font-family: Hk Grotesk;
src: url(hk-grotesk.woff2), url(hk-grotesk.woff);
}
body {
font-family: 'Hk Grotesk', Arial;
font-size: 36px;
line-height: 1.25;
background-color: #ffffff;
color: #333333;
}
header {
position: fixed;
top: 36px;
left: 36px;
z-index: 1;
transition: color 0.5s;
}
header.white {
color: #ffffff;
}
section {
background-color: #c8dee0;
min-height: 100vh;
padding: 80px;
display: flex;
justify-content: center;
align-items: center;
}
div.content {
position: relative;
}
div.square {
width: 100px;
height: 100px;
background-color: #d54156;
position: absolute;
top: 50px;
left: -50px;
}
div.circle {
width: 100px;
height: 100px;
background-color: #5982a0;
position: absolute;
bottom: 50px;
right: -50px;
border-radius: 50%;
}
div.content img {
position: relative;
}
section.s2 {
background-color: #c5c5c5;
}
section.s2 div.square {
background-color: #d6ac35;
}
section.s2 div.circle {
background-color: #be3c52;
}
section.s3 {
background-color: #292121;
}
section.s3 div.square {
background-color: #5f3736;
}
section.s3 div.circle {
background-color: #6e5f67;
}
section.s4 {
background-color: #f3f1f2;
}
section.s4 div.square {
background-color: #d54156;
}
section.s4 div.circle {
background-color: #5982a0;
}
div.progress {
position: fixed;
top: 0;
left: 0;
width: 0;
height: 10px;
background-color: #333333;
z-index: 1;
transition: background-color 0.5s;
}
div.progress.white {
background-color: #ffffff;
}