-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.08 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: rgb(11, 11, 11);
color: #ffffff;
font-family: Helvetica, sans-serif;
}
#bg{
width: 100vw;
height: 100vh;
background: url('./media/bg.gif');
background-size: cover;
background-repeat: no-repeat;
opacity: 60%;
position: absolute;
z-index: -1;
}
#main{
padding: 3vw 3.5vw;
width: 100vw;
height: 100vh;
}
#big-heading{
font-size: 12vw;
letter-spacing: -0.2vw;
}
.heading{
display: flex;
}
#line{
height: 0.13rem;
border-radius: 4px;
width: 92vw;
background-color: rgb(196, 196, 196);
margin-block: 1.2vw;
}
.column{
width: 92vw;
display: flex;
justify-content: space-between;
gap: 6vw;
margin-block: 3vw;
}
.box{
height: auto;
font-size: 1.5vw;
width: 46vw;
}
.box a{
text-decoration: none;
color: white;
}
.box a:hover{
color: #ffb26a;
}
.small-box{
font-size: 1.2vw;
}
.bottom{
position: absolute;
bottom: 2vw
}
.line-bottom{
position: absolute;
bottom: 15vw
}