-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (68 loc) · 1.19 KB
/
style.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
body{
background: #2c3e50;
}
.content{
display: inline-block;
padding: 0px;
margin:20px 20px 20px 200px;
}
.flexed{
display:flex;
}
#gameArea{
background: #e78e40;
margin: 0px;
border : 1px solid black;
}
.sidebar{
display: inline-block;
width: 400px;
text-align:center;
padding-top :100px;
padding-left: 100px;
}
.play{
color:white;
background: #e67e22;
line-height: 3em;
font-size: 2em;
font-weight: 700;
font-family: Helvetica;
border: 1px solid #333;
border-radius: 20px;
height: 100px;
margin: 20px 50px;
}
.show{
background: white;
line-height: 3em;
font-size: 1.5em;
color:#e67e22;
border:0px;
border-radius: 10px;
margin: 20px;
}
.alert{
font-size: 2em;
color : #e78e40;
}
.action{
color:white;
display: inline-block;
width:80px;
background: #e67e22;
line-height: 1.8em;
font-size: 1.3em;
font-family: Helvetica;
border: 1px solid #333;
border-radius: 10px;
padding: 5px;
margin:5px;
cursor: pointer;
}
.action:hover{
color:#e67e22;
background-color: white;
width: 85px;
font-weight: 600;
}