-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.css
158 lines (136 loc) · 2.63 KB
/
home.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
155
156
157
158
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: white;
}
h1{
text-align: center;
font-size: 100px;
width: 100%;
height: auto;
font-family:"Permanent Marker";
margin-top: 0%;
background-color: gray;
}
h2{
text-align: center;
font-size: 50px;
width: 100%;
height: auto;
font-family: "Permanent Marker";
margin-top: 0%;
}
.game1{
width: 25%;
height: auto;
}
.game2{
width: 28.5%;
height: auto;
}
.card{
color: black;
border-radius: 10px;
}
/* Float four columns side by side */
.column {
float: left;
width: 50%;
padding: 0 10px;
border-radius: 10px;
}
/* Remove extra left and right margins, due to padding */
.row {
margin: 0 -5px;
border-radius: 5px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
#game{
padding-bottom: 5%;
}
.button {
background-color: black;
border-radius: 5px;
color: white;
padding-left: 5em;
padding-right: 5em;
padding-top:0.5em;
padding-bottom: 0.5em;
text-decoration: none;
font-weight: 500;
}
.button:focus,
.button:hover {
background-color: white;
color: black;
border: 2px solid black;
font-weight: 500;
}
.content {
display: none;
margin: 1em 0;
}
.content.active,
.no-js .content {
display: block;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: auto;
background-color: gray;
color: white;
text-align: center;
font-size: 25px;
font-family: "Permanent Marker";
}
.social{
color: white;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
h1 {
font-size: 50px;
background-color: gray;
}
h2{
font-size: 30px;
}
.footer {
position: relative;
left: 0;
bottom: 0;
width: 100%;
height: auto;
background-color:;
color: white;
text-align: center;
font-size: px;
font-family: "Permanent Marker";
}
.social{
color: white;
}
}
/* Style the counter cards */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
text-align: center;
background-color: #f1f1f1;
}