-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmenu.css
More file actions
122 lines (106 loc) · 1.82 KB
/
menu.css
File metadata and controls
122 lines (106 loc) · 1.82 KB
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
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
padding: 40px;
width: 1200px;
height: 800px;
background-color: #262626;
}
/* Style the header */
header {
background-color: #666;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
input[type=text] {
background-color: #f1f1f1;
border-radius: 4px;
color: black;
padding: 4px 4px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
width: 200px;
}
input[type=submit] {
background-color: #777;
border-radius: 16px;
color: white;
padding: 5px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
button[type=submit] {
background-color: #777;
border-radius: 16px;
color: white;
padding: 5px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
enterGameBox {
float: left;
width: 25%;
height: 300px;
background: lightgrey;
align-content: center;
text-align: center;
margin: auto;
}
article {
float: right;
width: 75%;
background-color: #f1f1f1;
height: 300px;
text-indent: 50px;
image-orientation:
}
sourceCode {
float: right;
width: 100%;
background-color: #f1f1f1;
height: 3000px;
text-indent: 50px;
image-orientation:
}
sources {
float: left;
background-color: white;
height: 400px;
width: 100%;
text-indent: 0px;
line-height: 22px;
display: block;
}
/* Clear floats after the columns */
section:after {
content: "";
display: table;
clear: both;
}
.row {
display: flex;
}
.column {
flex: 33.33%;
padding: 10px;
}
footer {
background-color: #777;
padding: 10px;
text-align: center;
line-height: 150px;
color: white;
height: 200px
}
</style>