-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
112 lines (99 loc) · 1.79 KB
/
main.css
File metadata and controls
112 lines (99 loc) · 1.79 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
104
105
106
107
108
109
110
111
112
#middle-container {
top: 0%;
height: 80vh;
overflow: hidden;
align-self: center;
perspective: 1000px;
}
#middle-lists {
position: absolute;
top: 10px;
left: 10px;
display: flex;
flex-direction: column;
margin-top: 44px;
margin-left: 16px;
gap: 12px;
font-weight: 500;
font-size: clamp(14px, 4vw, 28px);
}
#middle-lists a {
position: relative;
display: inline-block;
margin-left: 16px;
text-decoration: none;
color: inherit;
cursor: pointer;
padding-left: 12px;
}
#middle-lists a::before {
content: "•";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 14px;
color: inherit;
}
#middle-lists a:hover {
text-decoration: underline;
}
#middle-icons {
margin-top: 40px;
margin-right: 10px;
position: absolute;
height: 38px;
top: 10px;
right: 10px;
}
#middle-icons .icon {
display: inline-block;
width: clamp(24px, 5vw, 42px);
height: auto;
filter: invert(1);
margin-left: 14px;
}
#middle-icons a {
text-decoration: none;
color: inherit;
}
#middle-logo {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
will-change: transform;
width: min(33.33vmin, 240px);
height: auto;
z-index: 0;
}
#detail0-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin-top: 0;
text-align: center;
font-weight: 800;
margin-left: auto;
margin-right: auto;
gap: 10px;
z-index: 10;
background: #363636;
}
.detail0 p1 {
font-size: clamp(40px, 10vw, 102px);
margin: 20px 0;
}
.detail0 p2 {
font-size: clamp(18px, 5vw, 42px);
margin: 10px 0;
}
#out {
font-size: 30px;
font-weight: 800;
}