-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (89 loc) · 1.63 KB
/
index.css
File metadata and controls
103 lines (89 loc) · 1.63 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
101
102
103
@font-face {
font-family: 'IBMPlexSans';
font-style: normal;
font-weight: 400;
src: url('fonts/IBMPlexSans-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'IBMPlexSans';
font-style: normal;
font-weight: 700;
src: url('fonts/IBMPlexSans-Bold.ttf') format('truetype');
}
html, body {
background-color: #1F1F1F;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
#banner {
background-image: url('images/logo_planet_large_upscale_touchup.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position: absolute;
top: -35vh;
left: 0px;
width: 100%;
height: 150vh;
}
#tags {
display: flex;
justify-content: center;
position: absolute;
top: 57vh;
left: 0px;
width: 100%;
gap: 12px;
}
#hello {
font-family: 'IBMPlexSans';
position: absolute;
top: 20vh;
left: 0px;
width: 100%;
text-align: center;
font-size: 24px;
}
#hello > a {
color: #FDFFFF;
}
#name {
font-family: 'IBMPlexSans';
font-weight: bold;
position: absolute;
top: 65vh;
left: 0px;
width: 100%;
text-align: center;
color: #FDFFFF;
font-size: 64px;
}
#tags > a > img {
width: 36px;
}
#x-tag > img {
height: 32px;
}
@media screen and (max-device-width: 600px) {
#hello {
top: 15vh;
font-size: 48px;
}
#tags {
top: 60vh;
gap: 24px;
}
#tags > a > img {
width: 64px;
}
#x-tag > img {
height: 56px;
}
#name {
top: 70vh;
font-size: 96px;
}
}