-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (70 loc) · 1.24 KB
/
style.css
File metadata and controls
77 lines (70 loc) · 1.24 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
/*no dragging allowed for whole site*/
* {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
html {
height: 100%;
width: 100%;
}
#gamecontainercontainer{
width: 1100px;
height: 700px;
margin: auto;
border: 1px solid black;
}
/* css button style from https://cssbuttons.app/
*/
.cssbutton{
border: 0;
text-align: center;
display: inline-block;
padding: 14px;
width: 150px;
margin-top: 30px;
color: #ffffff;
background-color: #36a2eb;
border-radius: 8px;
font-family: "proxima-nova-soft", sans-serif;
font-weight: 600;
text-decoration: none;
transition: box-shadow 200ms ease-out;
}
.cssbutton:disabled{
background-color:#607d90; ;
}
#tutorial{
background-color: #134f77;
}
#powerupcontainer{
border: 1px solid white;
margin: 50px;
font-size: 30px;
}
#gamecontainer {
position: absolute;
margin-top: 50px;
margin-left: 30px
}
#infocolumn{
float: right;
height: 605px;
margin-top: 50px;
margin-right: 30px;
width: 200px;
border: 2px solid blue;
background-color: white;
}
#progress-bar {
width: 0;
height: 30px;
background-color: #6716fe;
}
#progcontainer{
width: 70px;
border: 2px solid black;
margin-left: 60px;
}