-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (89 loc) · 1.51 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
*{
color: #fff;
font-family: Courier!important
}
body {
background-color: #000
}
#mainmenu {
border-spacing: 0px
}
#mainmenu td {
display: table-cell;
text-align: center;
width: 100px;
min-width: 100px;
height: 50px;
border: 1px solid #777
}
#mainmenu tr {
display: table-row;
height: 55px
}
#mainmenu button {
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 10px;
width: 86px;
height: 35px;
padding: 4px 12px;
text-decoration: none;
margin-left: auto;
margin-right: auto
}
.savename {
font-size: 20px;
font-weight: 700;
cursor: pointer;
background-color: transparent;
border-color: transparent
}
.author {
font-size: medium;
font-weight: 400;
font-style: italic;
margin-left: 10px
}
.pre-infinity {
color: #a7ff9b
}
.infinity {
color: #fac882
}
.elementary {
color: #83f7ee
}
.multiverse {
color: #9173ef
}
.endgame {
color: #d6c102
}
.active {
cursor: pointer;
box-shadow: 3px 4px 0 0 #218a3b;
background: linear-gradient(to bottom,#1dc42b 5%,#37f04a 100%);
border: 1px solid #17cf2c;
text-shadow: 0 1px 0 #057d29
}
#mainmenu .active:hover {
background: linear-gradient(to bottom,#37f04a 5%,#1dc42b 100%);
background-color: #37f04a
}
.inactive {
box-shadow: 3px 4px 0 0 #4d4d4d;
background: linear-gradient(to bottom,#afafaf 5%,#5e5e5e 100%);
border: 1px solid #5e5e5e;
text-shadow: 0 1px 0 #414141;
cursor: default
}
a {
color: #83cdf7;
cursor: pointer;
}
a:hover {
color: #8398f7
}