-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
142 lines (121 loc) · 2.4 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
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #afafaf;
background: radial-gradient(#131313 0%, #000000 100%);
}
h1, h2, div {
text-align: center;
font-size: 80px;
}
#embed {
margin: auto;
margin-bottom: 50px;
}
.ludosLogo {
margin-bottom: -100px;
height: auto;
border-radius: 50%;
transition: box-shadow 1s;
}
.ludosLogo:hover {
box-shadow: 0 0 50px rgb(165, 106, 29);
}
.navLinks {
display: flex;
justify-content: center;
align-items: center;
}
.footer {
position: fixed;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 40px;
background-color: #000000;
color: white;
text-align: center;
font-size: 25px;
}
.main {
width: 32vw;
height: auto;
max-width: 800px;
min-width: 300px;
background-color: transparent;
border-style: solid;
border-color: #242424;
border-width: 6px;
border-radius: 15px;
color: #318d34;
font-size: 75px;
padding: 30px 64px;
cursor: pointer;
transition: background-color .25s, transform 1s, border-color .25s;
}
.main:hover {
border-color: #318d34;
}
.legacy {
width: 25vw;
height: auto;
max-width: 700px;
min-width: 250px;
background-color: transparent;
border-style: solid;
border-color: #242424;
border-width: 3px;
border-radius: 15px;
color: #6d6d6d;
font-size: 50px;
padding: 15px 32px;
cursor: pointer;
transition: background-color .25s, transform 1s, border-color .25s;
}
.legacy:hover {
border-color: #6d6d6d;
}
.mirror, .revolt, .github, .youtube, .about {
width: 25vw;
min-width: 250px;
max-width: 700px;
display: inline-block;
padding: 16px;
background-color: transparent;
border-style: solid;
border-radius: 8px;
border-color: #242424;
cursor: pointer;
font-size: 25px;
transition: background-color .25s, border-color .25s;
}
.mirror {
color: #e4cd4f;
}
.revolt {
color: #ff002b;
}
.github {
color: #afafaf;
}
.youtube {
color: #df0000;
}
.about {
color: #e68a00;
}
.mirror:hover {
border-color: #e4cd4f;
}
.revolt:hover {
border-color: #ff002b;
}
.github:hover {
border-color: #afafaf;
}
.youtube:hover {
border-color: #df0000;
}
.about:hover {
border-color: #e68a00;
}