forked from ics-creative/170612_effekseer_webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (98 loc) · 1.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
color: #FFF;
}
#app{
width: 100%;
height: 100%;
position: fixed;
}
#menu{
position: absolute;
left: 0;
bottom: 0;
margin-left: 10px;
}
ul {
padding:0px;
}
li {
display: inline-block;
}
.mb-10{
line-height:40px;
margin-bottom:20px;
}
.btn-mod,
a.btn-mod{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 4px 13px;
color: #fff;
background: rgba(255,255,266, .9);
border: 2px solid transparent;
font-size: 11px;
font-weight: 400;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus{
font-weight: 400;
color: rgba(255,255,255, .85);
background: rgba(0,0,0, .7);
text-decoration: none;
outline: none;
}
.btn-mod:active{
cursor: pointer !important;
}
/* ==============================
ボタンサイズ
============================== */
.btn-mod.btn-small{
padding: 6px 17px;
font-size: 11px;
letter-spacing: 1px;
}
.btn-mod.btn-medium{
padding: 8px 37px;
font-size: 12px;
}
.btn-mod.btn-large{
padding: 12px 45px;
font-size: 13px;
}
/* ==============================
border黒枠ボタン
============================== */
.btn-mod.btn-border{
color: #111;
border: 2px solid #151515;
}
.btn-mod.btn-border:hover,
.btn-mod.btn-border:focus{
color: #111;
border-color: transparent;
background: #FFF;
}
/* ==============================
角丸ボタン
============================== */
.btn-mod.btn-circle{
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
}