-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (66 loc) · 1.12 KB
/
main.css
File metadata and controls
77 lines (66 loc) · 1.12 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
/* CSS Document */
div.building {
background: none;
/*border: solid thin black;*/
margin: 0;
float: left;
position: relative;
z-index: -10;
/* -webkit-transition-property: background-color;
-webkit-transition-duration: 10s;*/
}
/*div.building:hover {
-webkit-transition-property: background-color;
-webkit-transition-duration: 5s;
background: #000;
}*/
.building.small {
height: 100px;
width: 100px;
/*border-radius: 15px;*/
}
.building.medium {
height: 80px;
width: 80px;
}
.building.large {
height: 180px;
width: 180px;
}
html {
/*cursor: none;*/
background: #FFF;
}
body {
height: 110%;
width: 110%;
overflow: hidden;
margin: 0;
padding: 0;
font-family: Arial, Verdana, sans-serif;
}
div.button {
height: 2em;
padding: 0 25px;
line-height: 2em;
box-shadow: inset 0 -2px 7px rgba(0, 0, 0, 0.3), inset 0 2px 7px rgba(255, 255, 255, 1);
background: #AAA;
border-radius: 5px;
cursor: pointer;
color: #777;
font-weight: bold;
}
div.button:hover {
background: #CCC;
color: #333;
}
div#PauseBtn {
position: absolute;
left: 5px;
top: 5px;
}
div#StartBtn {
position: absolute;
left: 5px;
top: 45px;
}