-
Notifications
You must be signed in to change notification settings - Fork 1
/
planetco.css
91 lines (76 loc) · 1.41 KB
/
planetco.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
/* Main styles */
body {
padding: 0;
margin: 0;
background-image:url(https://cloud.addictivetips.com/wp-content/uploads/2017/10/Red-Galaxy.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
color:white;
font-family: 'Abril Fatface', cursive;
font-size: 20px;
letter-spacing: 2px;
height: 100%;
width: 100%;
}
.titlecard {
width: 100%;
background: black;
border-bottom: solid 5px white;
margin-top: 0px;
color: white;
}
.maincontainer {
min-height: calc(100vh - 35px);
}
main {
width: 60%;
margin: 0 auto;
padding-top: 25px;
padding-bottom: 25px;
}
h2 {
text-align:center;
}
button {
border-radius: 25%;
padding: 15px;
margin: 0 auto;
display: block;
font-size: 15px;
background: black;
color: white;
}
button a {
text-decoration: none;
color: white;
}
footer {
/* position: absolute; */
padding: 5px;
height: 25px;
}
/*Level One Game*/
.direction {
text-align: center;
}
.flex-container {
display: flex;
flex-direction: row;
justify-content: center;
}
.gameboard {
width: 75%;
clear: both;
}
.saleitem {
height: 150px;
width: 150px;
padding: 15px;
}
.itemsforsale {
float: left;
}
.budgetpanel {
float: right;
}