-
Notifications
You must be signed in to change notification settings - Fork 10
/
style.css
154 lines (129 loc) · 4.01 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
@font-face {
font-family: 'texgyreadventorregular';
src: url('./fonts/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.eot');
src: url('./fonts/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'), url('./fonts/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.woff') format('woff'), url('./fonts/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.ttf') format('truetype'), url('./fonts/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.svg#texgyreadventorregular') format('svg');
font-weight: normal;
font-style: normal;
text-transform: uppercase;
}
@font-face {
font-family: 'texgyreadventorbold';
src: url('./fonts/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.eot');
src: url('./fonts/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.eot?#iefix') format('embedded-opentype'), url('./fonts/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.woff') format('woff'), url('./fonts/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.ttf') format('truetype'), url('./fonts/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.svg#texgyreadventorbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'texgyreadventoritalic';
src: url('./fonts/texgyreadventor_italic_macroman/texgyreadventor-italic-webfont.eot');
src: url('./fonts/texgyreadventor_italic_macroman/texgyreadventor-italic-webfont.eot?#iefix') format('embedded-opentype'), url('./fonts/texgyreadventor_italic_macroman/texgyreadventor-italic-webfont.woff') format('woff'), url('./fonts/texgyreadventor_italic_macroman/texgyreadventor-italic-webfont.ttf') format('truetype'), url('./fonts/texgyreadventor_italic_macroman/texgyreadventor-italic-webfont.svg#texgyreadventoritalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'nexa_rust_sansblack';
src: url('./fonts/nexarustsans-black-webfont.woff2') format('woff2'), url('./fonts/nexarustsans-black-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
html {
background: url(https://assets.thesilphroad.com/img/background1.jpg);
background-size: cover;
background-attachment: fixed;
}
body {
background: transparent;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'texgyreadventorregular';
text-transform: uppercase;
letter-spacing: .2em
}
h1 {
font-size: 22px;
}
h5 {
font-family: 'texgyreadventorbold';
letter-spacing: .15em;
font-size: 17px;
}
a {
color: #E4C049;
}
a:hover {
color: #F1CC55;
}
.assetGroup {
text-align: left;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-auto-rows: 1fr;
justify-content: center;
}
.assetGroup a {
display: inline-block;
background: rgba(255, 255, 255, 0.13);
padding: 10px 20px;
border-radius: 4px;
margin: 5px;
display: flex;
flex-direction: column;
justify-content: center;
}
.assetGroup a img {
max-height: 200px;
max-width: 160px;
display: inline-block;
}
.assetGroup a label {
display: block;
text-align: center;
padding: 10px 3px 0;
}
.asset-section {
display: none;
}
.asset-section.show {
display: block;
}
.filters {
margin: 25px;
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.filter-section {
margin-right: 40px;
}
.filter-section:last-child {
margin-right: 0;
}
.filter-section > .options {
display: flex;
flex-wrap: wrap;
}
.filter-section > .options > label > span {
font-weight: normal;
display: block;
font-size: 14px;
margin-right: 10px;
padding: 3px;
border-bottom: solid 2px white;
cursor: pointer;
}
.filter-section > .options > label > input {
display: none;
}
.filter-section > .options > label > input:checked + span {
color: #E4C049;
border-color: #F1CC55;
}
.filter-section > .options > label > span:hover {
color: #F1CC55;
border-color: #F1CC55;
}
.filter-section > .options > label:last-child > span {
margin-right: 0;
}