-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
142 lines (123 loc) · 2.15 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
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
body {
margin: 0;
background-color: #1b1b1b;
text-align: center;
color: whitesmoke;
font-family: Font;
}
@font-face {
font-family: Font;
src: url(8bitOperatorPlus-Bold.ttf);
}
h1 {
font-size: 300%;
}
h2 {
font-size: 200%;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
a {
color:rgb(21, 128, 69);
}
.column {
flex: 25%;
max-width: 25%;
padding: 0 4px;
display: block;
margin-left: auto;
margin-right: auto;
}
.footer {
position: absolute;
width: 100%;
height: 18%;
bottom: -20%;
background-color:#424242;
color: white;
text-align: center;
}
img {
border-radius: 3%;
transition:transform 0.25s ease;
}
img:hover {
-webkit-transform:scale(1.25);
transform:scale(1.25);
}
.game-bg {
word-wrap: break-word;
margin: auto;
background-color: #353535;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
}
.description {
width: 50%;
height: auto;
word-wrap: break-word;
margin: auto;
background-color: #353535;
padding: 0 20%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
.seperation {
padding: 1%;
}
/* Style the header */
.header {
width: 50%;
height: auto;
word-wrap: break-word;
margin: auto;
background-color: #6e6e6e;
padding: 0 23%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
}
.wrapper {
width: 100%;
height: 100%;
position: relative;
}
.wrapper img {
width: 100%;
height: 100%;
}
.wrapper a {
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
left: 0;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
flex: 100%;
max-width: 100%;
}
}