-
Notifications
You must be signed in to change notification settings - Fork 32
/
styles.css
108 lines (93 loc) · 1.57 KB
/
styles.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
* {
box-sizing: border-box;
}
body {
background-color: black;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.topnav {
overflow: hidden;
background-color: black;
}
.topnav #donate {
float: right;
}
.topnav a {
float: left;
display: block;
color: #33ff00;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: monospace;
}
.topnav a:hover {
background-color: #9c999a;
color: #080808;
}
.topnav a.active {
background-color: #f5034b;
color: white;
}
@media only screen and (max-width: 600px) {
.topnav a {
float: none;
display: block;
text-align: left;
}
}
table {
border-collapse: collapse;
width: 100%;
max-width: 100%;
margin: 20px auto;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
th,
td {
text-align: center;
padding: 5px;
border-bottom: 15px solid #080808;
}
th {
background-color: #181818;
color: white;
}
tr:nth-child(even) {
background-color: #02b13c;
}
.link-preview {
display: inline-block;
max-width: 100%;
overflow: visible;
text-overflow: clip;
white-space: normal;
padding: 5px;
border-radius: 10px;
background-color: #0f0f0f;
color: white;
cursor: pointer;
user-select: none;
transition: transform 0.25s ease-out;
word-break: break-all;
}
.link-preview:hover {
transform: translate(5px, 5px);
}
h1 {
text-align: center;
color: #33ff00;
font-family: monospace;
font-size: 3em;
}
p {
color: #eeeaea;
text-align: center;
font-family: monospace;
font-size: 2em;
padding: 0 10%;
margin: 1em 0;
}