-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (52 loc) · 888 Bytes
/
style.css
File metadata and controls
54 lines (52 loc) · 888 Bytes
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
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
box-sizing: border-box;
}
h1 {
font-style: bold;
color: #0000ff;
box-sizing: border-box;
}
.game {
background-color: red;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.topmenu {
background-color: brown;
display: flex;
flex-direction: row;
box-sizing: border-box;
}
.main_content {
background-color: green;
display: flex;
flex-direction: row;
box-sizing: border-box;
align-items: left;
}
.coin_image {
width: 100%;
height: 100%;
box-sizing: border-box;
background-color:yellow
}
.coinimage {
width: 100%;
height: 100%;
box-sizing: border-box;
}
.shop {
width: 50%;
height: 100%;
box-sizing: border-box;
align-items: left;
}
.shopitem {
width: 100%;
height: 20%;
box-sizing: border-box;
}