forked from j-rooks/oop-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (100 loc) · 1.78 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
/* No need to update this file */
* {
box-sizing: border-box;
}
body,
input {
margin: 0;
font-family: 'Press Start 2P', cursive;
font-size: small;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
}
#container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: space-evenly;
background: #222222;
}
#welcomeBox {
position: absolute;
min-height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
background: #222222;
color: #fff;
text-align: center;
}
#enter {
display: flex;
padding-top: 15px;
}
#board {
position: relative;
text-align: center;
}
#board > h1 {
color: #fff;
}
.row {
display: flex;
}
.row > img {
width: 32px;
height: 32px;
object-fit: contain;
object-position: center;
background: url('alt_imgs/environment/grass1.png');
}
#action-cam {
background: #fff;
border-radius: 5px;
min-width: 415px;
}
#action-cam img {
display: block;
width: 96px;
height: 96px;
object-fit: contain;
object-position: center;
}
.action-view {
display: flex;
justify-content: space-around;
padding: 20px;
min-width: 300px;
}
.action-view:first-child {
border-bottom: 2px solid #ddd;
}
.action-view h3,
.action-view h4 {
margin: 0;
}
#action-menu {
text-align: center;
}
#action-menu > div {
max-height: 300px;
overflow: auto;
margin-bottom: 20px;
}
#action-menu button {
display: block;
width: 80%;
padding: 5px;
margin: 10px auto;
font-family: 'Press Start 2P', cursive;
font-size: smaller;
background-image: url(alt_imgs/button.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
border: none;
}
#action-menu button:active {
background-image: url(alt_imgs/button_u.png);
}