-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeneral.css
70 lines (63 loc) · 1.05 KB
/
general.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
body {
color : #BBB;
background-color: #191970;
}
a {
color : #00FFFF;
}
.gamebox {
background-color: #194570;
border-color: #000;
border-width: 6px;
border-style: solid;
border-radius: 4%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
margin: 20px 15px;
padding: 10px;
}
.gameiframe {
display: block;
overflow: hidden;
background-color: #000;
border-color: #BBB;
border-style: solid;
border-width: 2px;
border-radius: 2px;
margin: 10px 0 10px 20px;
}
#gamedescription {
max-width: 340px;
margin: 20px;
}
#title {
text-align: center;
}
#subtitle {
text-align: center;
}
#header {
height: 50px;
margin: 20px 10px 30px 10px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
color: #000;
background-color: #451970;
border: 2px solid #194570;
border-radius: 2px;
}
#headertitle {
display: block;
color: #000;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-decoration: none;
}
#footer {
text-align: center;
color: #000;
background-color: #451970;
}