-
Notifications
You must be signed in to change notification settings - Fork 36
/
style.css
100 lines (82 loc) · 1.46 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
html {
background-image: url('img.jpg');
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-color: #24272b;
color: white;
text-align: center;
overflow: hidden;
}
h1 {
text-shadow: 0.1em 0.1em 0.2em black;
font-size: 25px;
color: white;
}
a {
text-decoration: none;
}
#progress {
display: block;
}
#menu {
display: block;
}
#crypto {
display: none;
}
#tools {
display: none;
}
#lnx {
display: none;
}
#mods {
display: none;
}
.btn {
background-color: #003263;
color: white;
width: 227px;
height: 46px;
padding-bottom: 5px;
text-align: center;
font-size: 20px;
margin-top: 8px;
margin-bottom: 8px;
margin-left: 5px;
margin-right: 5px;
border-style: none;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 4px;
}
.btn:hover {
background-color: #0069d9;
}
.btn-alt {
background-color: #b10000;
}
.btn-alt:hover {
background-color: #f31414;
}
.btn-onln {
background-color: #076300;
}
.btn-onln:hover {
background-color: #18891b;
}
.btn-toolbox {
background-color: #ae2301;
}
.btn-toolbox:hover {
background-color: #d42a01;
}
.btn-ps5 {
background-color: #3d3f4e;
}
.btn-ps5:hover {
background-color: #c2c2c2;
color: #303030;
}