-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
152 lines (148 loc) · 3.24 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
:root{
--background-color: rgb(19, 24, 48);
/* --background-color: rgb(1, 2, 12); */
--secondary: rgb(34, 41, 72);
}
body {
background-color: var(--background-color);
width: 100vw;
height: 50rem;
background-image:
linear-gradient(transparent 0%, rgb(19, 24, 48) 80%),
radial-gradient(ellipse at top center, rgb(44, 56, 114), transparent),
radial-gradient(circle at top center, rgb(44, 56, 114), transparent);
background-repeat: no-repeat;
}
.martinMono {
font-family: "Martian Mono", system-ui;
font-optical-sizing: auto;
/*font-weight: weight;*/
font-style: normal;
font-variation-settings:
"wdth" 100;
color: white;
}
.header {
color: white;
font-size: 3.5rem;
font-weight: 1;
text-align: center;
height: 7rem;
width: 100%;
position: relative;
top: 0px;
left: 0px;
transition-duration: 0.5s;
animation-name: title;
animation-duration: 4s;
animation-delay: .4s;
animation-fill-mode: forwards;
}
.line {
z-index: -100;
border-left: .2rem solid white;
height: 205rem;
margin-left: calc(50% + 0.1rem);
margin-top: 10rem;
width: 0px;
box-shadow: 0px 0px 1rem white;
position: absolute;
top: 5rem;
}
.box {
transition: .5s;
border-radius: .75rem;
z-index: 1;
font-size: 1.2rem;
padding: 0px;
margin: 0px;
border: solid 0.01rem transparent;
}
.box:hover {
z-index: 1;
/* background-color: var(--secondary); */
background-color: rgba(156, 161, 249, 0.105);
filter: sepia(50px);
backdrop-filter: blur(1rem);
-webkit-backdrop-filter: blur(1rem);
box-shadow: 0px 1.5rem 3rem rgba(0, 0, 0, 0.571), inset 0px 0px 4rem rgba(255, 255, 255, 0.179);
transform: translateY(-1.5rem) translateX(1rem) rotate(5deg) scale(1.1);
border: solid 0.05rem rgba(255, 255, 255, 0.362);
.boxTime {
transform: translateY(2rem);
color: white;
}
.boxText {
transform: translateY(2rem);
}
.image {
transform: translateX(50vw);
opacity: 1;
transition-duration: 1s;
}
}
.boxHeader {
font-size: 1.6rem;
font-weight: 700;
padding: 1.5rem;
padding-bottom: 0px;
margin: 0px;
}
.right {
translate: calc(50vw + 2rem);
width: 45vw;
}
.left {
width: 45vw;
translate: calc(50vw - 45vw - 2rem);
}
.boxTime {
font-weight: 1;
font-size: 1.5rem;
padding: 1.5rem;;
padding-top: 0px;
padding-bottom: 0px;
margin: 0px;
translate: 0px -2rem;
color: transparent;
transition: .5s;
}
.boxText {
padding: 1.5rem;
padding-top: .75rem;
margin: 0px;
translate: 0px -2rem;
transition-duration: .6s;
transition-delay: .14s;
}
.image {
position: absolute;
translate: -100vw -20vh;
transition-duration: 1s;
opacity: 0;
}
.arpnet {
color: white;
position: relative;
top: 0px;
}
@keyframes title {
25% {
font-weight: 500;
filter: drop-shadow(0px 0px .5rem white);
font-size: 4rem;
height: 9rem;
}
50% {
font-weight: 500;
filter: drop-shadow(0px 0px .5rem white);
font-size: 4rem;
height: 9rem;
}
100% {
font-weight: 500;
filter: drop-shadow(0px 0px 0px white);
font-size: 4rem;
height: 9rem;
}
}