-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.css
98 lines (84 loc) · 1.18 KB
/
home.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
89
90
91
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: #fff;
}
html,
body {
width: 100%;
height: 100vh;
overflow: hidden;
background: #000;
}
h1.header {
font-family: "Bigilla" !important;
font-size: 200px;
text-transform: uppercase;
font-weight: bolder;
width: 90%;
}
.header .letter {
display: inline-block;
line-height: 1em;
}
.titles {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-weight: 500;
font-size: 240px;
font-family: "Barracuda" !important;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
ul.titles {
display: flex;
}
ul.blocks {
margin: 0;
padding: 0;
display: flex;
width: 100%;
height: 100vh;
list-style: none;
justify-content: center;
align-items: center;
}
li.block {
height: 100vh;
}
.block-1 {
width: 0.2%;
margin: 0 10px;
background: #da0510;
}
.block-2 {
width: 1.4%;
margin: 0 200px 0 20px;
background: #2001fe;
}
.block-3 {
width: 0.8%;
margin: 0 40px;
background: #01fefe;
}
.block-4 {
width: 2%;
margin: 0 400px;
background: #00fe00;
}
.block-5 {
width: 0.8%;
margin: 0 20px;
background: #f4f315;
}
.block-6 {
width: 2.8%;
background: #fa04f9;
}