forked from astronautlevel2/Luma3DS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (48 loc) · 884 Bytes
/
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
body {
background: url("background.png");
text-align: center;
background-attachment: fixed;
font-family: 'Muli', sans-serif;
}
.main {
margin: auto;
background-color: rgba(255,255,255, .5);
padding: 0%;
padding-top: 0px;
text-align: center;
width: 65%;
}
.toplink {
color: black;
}
table, th, td {
padding: 10px;
border: 1px solid black;
margin-left: auto;
margin-right: auto;}
}
table {
width: 640px;
border-collapse: collapse;
border-spacing: 0;
}
tr:hover {background-color: #f5f5f5}
td, th {
border: 1px solid transparent;
height: 30px;
transition: all 0.3s;
}
th {
background: #3d3d3d;
font-weight: bold;
color: #f4f4f4;
font-size: 20;
}
td {
text-align: center;
color: #f3f3f3;
}
tr td { background: #777; }
tr td:hover { background: #e6e6e6; color: #000; }
td:hover a {color: #000;}
a {transition: all 0.3s; color: #f2f2f2;}