-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (78 loc) · 1.37 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
* {
margin: 0;
padding: 0;
}
.small-icon {
height: 1em;
width: 1em;
}
.wide-small-icon {
height: 1em;
width: 2em;
}
.console-small-icon {
height: 1em;
width: 1em;
}
.wide-console-small-icon {
height: 1em;
width: 2em;
}
#main {
position: relative;
margin-left: 20%;
margin-right: 20%;
}
@media (max-width: 600px) {
#main {
position: relative;
margin-left: 5%;
margin-right: 5%;
}
}
body {
margin: 0px;
}
#main-body {
background-image: url(https://cdn.steamstatic.com/steamcommunity/public/images/items/978460/930dfaf3b9e7c47cf06d007f47e28e3bf9098442.jpg);
background-size: cover;
background-attachment: fixed;
padding: 3px;
margin-left: 3px;
margin-right: 3px;
margin-top: 0;
margin-bottom: 0;
min-height: 690px;
}
.dropdown {
display: inline-block;
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
overflow-x: visible;
background-color: #ece9d9;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
border-style: solid;
border-color: #808080;
border-width: 1px;
}
.dropdown:hover .dropdown-content {
display: block;
padding: 2px;
}
.dropdown-content a {
display: block;
color: #000000;
padding: 5px;
text-decoration: none;
}
.dropdown-content a:hover {
color: #ffffff;
background-color: #316ac5;
}
.dropdown p:hover {
color: #ffffff;
background-color: #316ac5;
}