-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
executable file
·80 lines (73 loc) · 1.35 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
80
@charset 'UTF-8';
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
background:#fff9dc url(img/bg.jpg) no-repeat 0 0;
background-size:cover;
}
.outside {
width: 850px;
margin: 0px auto 0;
padding-top: 60px;
}
/* スロットエリア */
#slot {
text-align: center;
margin-bottom: 40px;
width: 100%;
height: 616px;
background-repeat: no-repeat;
background-position: center center;
}
#slot.tshirt {
background-image: url(img/tshirt.png);
}
#slot.stecker {
background-image: url(img/stecker.png);
}
#slot.sense {
background-image: url(img/sense.png);
}
#slot.cup {
background-image: url(img/cup.png);
}
/* スタート・ストップボタン */
#button {
width: 701px;
height: 184px;
margin: 0 auto;
}
#button a {
width: 100%;
height: 100%;
display: block;
text-indent: -9999px;
background-position: 0 0;
background-repeat: no-repeat;
}
#button a:hover {
background-position: 0 bottom;
}
.start a {
background-image: url(img/btn_start.png);
}
.stop a {
background-image: url(img/btn_stop.png);
}
/* 結果表示 */
#result {
background: #fff;
border: 10px solid #111;
text-align: center;
padding: 25px 70px;
font-weight: bold;
font-size: 60px;
border-radius: 80px; /* CSS3草案 */
-webkit-border-radius: 80px; /* Safari,Google Chrome用 */
-moz-border-radius: 80px; /* Firefox用 */
display: none;
}