-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (108 loc) · 1.87 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
/* GLOBAL - applies to all colors */
@font-face {
font-family: 'DJV';
src: url('fonts/djv-book.ttf') format('truetype');
}
@font-face {
font-family: 'Bebas';
src: url('fonts/leaguegothic.ttf') format('truetype');
}
@font-face {
font-family: 'DJV-bold';
src: url('fonts/djv.ttf') format('truetype');
}
body {
font-family: 'DJV', monospace;
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
h1 {
font-family: 'DJV-bold', monospace;
text-align: center;
margin: 0;
margin-top: 20px;
}
code {
font-family: 'DJV-bold', monospace;
background-color: #2c2626;
color: #639763;
padding: 1px;
}
.bounce {
animation: bounce2 2s ease;
}
@keyframes bounce2 {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
i {
position: fixed;
right: 2rem;
}
.container {
padding: 2px 16px;
min-width: 200px;
}
.cards {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 2px 16px;
min-width: 200px;
}
.card img {
object-fit: cover;
height: 300px;
width: 100%;
}
.card {
transition: 0.3s;
width: 40%;
min-width: 250px;
min-height: 700px;
margin: 10px;
cursor: pointer;
}
.card a {
text-decoration: none;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
a {
color: #d10000;
}
.background-text {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
}
.background-text h1 {
font-size: 50vw;
filter: opacity(0.2);
z-index: -1;
font-family: 'Bebas';
user-select: none;
position: relative;
}
@keyframes scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.marquee {
white-space: nowrap;
overflow: hidden;
position: relative;
}