-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshake_style.css
88 lines (86 loc) · 2.28 KB
/
shake_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
80
81
82
83
84
85
86
87
88
*{
margin: 3px 0 0 0;
padding: 0;
}
body{
text-align: center; /*выравнивание Canvas по центру! да да это тот самый костыль =)*/
}
#play{
background-color: #68b12f;
background: linear-gradient(top, #68b12f, #50911e);
border: 1px solid #509111;
border-bottom: 1px solid #5b992b;
border-radius: 3px;
box-shadow: inset 0 1px 0 0 #9fd574;
color: white;
font-weight: bold;
padding: 6px 20px;
text-align: center;
text-shadow: 0 -1px 0 #396715;
}
#restart{
background-color: #03A9F4;
background: linear-gradient(top, #81D4FA, #039BE5);
border: 1px solid #0e78e5;
border-bottom: 1px solid #2077e5;
border-radius: 3px;
box-shadow: inset 0 1px 0 0 #B3E5FC;
color: white;
font-weight: bold;
padding: 6px 20px;
text-align: center;
text-shadow: 0 -1px 0 #0D47A1;
}
#pause{
background-color: #EF6C00;
background: linear-gradient(top, #FF9800, #EF6C00);
border: 1px solid #F57C00;
border-bottom: 1px solid #FF9800;
border-radius: 3px;
box-shadow: inset 0 1px 0 0 #FFCA28;
color: white;
font-weight: bold;
padding: 6px 20px;
text-align: center;
text-shadow: 0 -1px 0 #FF6F00;
}
#play:hover, #pause:hover, #restart:hover{
opacity:.75;
cursor: pointer;
}
#play:active{
border: 1px solid #20911e;
box-shadow: 0 0 10px 5px #356b0b inset;
}
#pause:active{
border: 1px solid #FFC107;
box-shadow: 0 0 10px 5px #a34718 inset;
}
#restart:active{
border: 1px solid #42A5F5;
box-shadow: 0 0 10px 5px #01579B inset;
}
#scr {
/*пока будет вот такой убогий дизайн )*/
width: 85px;
background: #fff;
border: 1px solid #2c509a;
border-radius: 5px;
color: #2c509a;
font: normal 12px arial;
padding: 7px 13px 8px
/*Не решил пока как оформить окно с результатом
width: 150px;
height: 20px;
background-color: #68b12f;
background: linear-gradient(top, #68b12f, #50911e);
border: 1px solid #509111;
border-bottom: 1px solid #5b992b;
border-radius: 3px;
box-shadow: inset 0 1px 0 0 #9fd574;
color: white;
font-weight: bold;
padding: 6px 20px;
text-align: center;
text-shadow: 0 -1px 0 #396715;*/
}