-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
133 lines (108 loc) · 2.32 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
Overwrite the default Materialize Light theme
Don't crucify me for the !important
*/
body, html {
background-color: #191a1a !important;
color: #e7e6e5 !important;
height: 100%;
}
#results-body td {
padding: 10px 5px;
}
.autocomplete {
color: #e7e6e5;
}
.select-dropdown {
color: #e7e6e5;
}
.dropdown-content {
background-color: #191a1a !important;
backface-visibility: hidden !important;
}
.optgroup > span {
color: #e7e6e5 !important;
}
.dropdown-content > li {
min-height: 36px !important;
}
.dropdown-content > li > span {
padding-top: 7px !important;
padding-bottom: 7px !important;
}
tr {
border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.input-field > input {
color: #e7e6e5 !important;
}
.material-tooltip {
white-space: pre;
}
nav {
background-color: #287168;
}
.nav-wrapper {
padding-left: 10px;
padding-right: 10px;
}
.modal-content {
background-color: #191a1a !important;
}
.brand-logo {
font-size: 1.8rem !important;
}
.logo {
border-radius: 20px;
vertical-align: middle;
}
.banner {
color: #e7e6e5;
font-size: 80px;
font-family: Helvetica,serif;
}
#searchForm {
margin: 30px auto;
width: 100%;
max-width: 900px;
}
#results {
margin: 30px auto;
width: 100%;
max-width: 1000px;
}
/* Steam Profile Icon Display, Based on official Steam CSS */
.playerAvatar {
width: 40px;
height: 40px;
position: relative;
border-radius: 0;
padding: 1px;
display: block;
margin: auto;
}
.playerAvatar img {
width: 38px;
height: 38px;
padding: 1px;
border-radius: 0;
border: none;
}
.playerAvatar.offline {
background: linear-gradient( to bottom, rgba(106,106,106,1) 5%, rgba(85,85,85,1) 95%);
}
.playerAvatar.offline img {
background: linear-gradient( to bottom, #515151 5%, #474747 95%);
}
.playerAvatar.online {
background: #57cbde linear-gradient(to bottom, rgba(83, 164, 196, 1) 5%, rgba(69, 128, 151, 1) 95%);
}
.playerAvatar.online img {
background: linear-gradient( to bottom, #41778f 5%, #3d697b 95%);
}
.playerAvatar.in-game {
background: #90ba3c linear-gradient(to bottom, rgba(143, 185, 59, 1) 5%, rgba(110, 140, 49, 1) 95%);
}
.playerAvatar.in-game img {
background: linear-gradient( to bottom, #66812e 5%, #59702b 95%);
}