-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
93 lines (93 loc) · 1.47 KB
/
index.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
/*
* index.css -- style
*
* Codes from Jack Works([email protected])
* And idea is from Scott Shen([email protected])
*
* Vola Studio 2014.
*
*
*/
body{
font-family: "Segoe UI", Monaco, Roboto;
font-weight: 100;
margin: 0;
}
svg#game_env {
width: 350px;
height: 350px;
}
circle.game_target, circle.game_source {
fill-opacity: 0;
stroke-width: 1;
}
circle.game_target {
stroke: #6F07D6;
}
circle.game_source {
stroke: #30B1F3;
font-size: 0px;
}
.stage {
height: 350px;
width: 525px;
overflow: hidden;
display: none;
}
.menu {
color: gray;
-webkit-transition: 0.25s;
}
.menu.active {
font-size: 24px;
border: 3px purple solid;
border-bottom: none;
border-top: none;
color: black;
}
.menu.dis1 {
font-size:18px;
}
.game_empty {
display: inline-block;
width: 525px;
overflow: hidden;
}
.game_enviroment {
float: left;
}
.game_board {
float: right;
width: 175px;
overflow: hidden;
}
p.game_board_tile {
color: white;
margin: 0;
padding: 0.75em 0.75em;
width: 100%;
}
.game_board_title {
background: #7c4dff;
font-size: 1.5em;
}
a {
text-decoration: none !important;
color: #5677fc !important;
}
.game_stage_about .header {
font-size: 2em;
}
.game_stage_about .game_board_tile {
background: #03a9f4;
}
.game_stage_about > .game_board_tile > a{
color: white !important;
}
.game_stage_about p {
margin: 0;
}
ul {
margin: 0;
list-style-type: none;
}