forked from seeseekey/Soundboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (62 loc) · 1.08 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
body {
font: 16px Roboto, Arial, sans-serif;
}
a {
color: #999;
}
.block, div {
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
align-items: stretch;
flex-shrink: 0;
align-content: flex-start;
border: 0 solid #000;
margin: 0;
padding: 0;
}
.progress {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
flex-direction: row;
overflow: hidden;
border-radius: 3px;
opacity: 0.15;
width: 0%;
height: 100%;
background: white;
pointer-events:none;
}
.soundboardButton {
border-radius: 3px;
background-color:#44c767;
border:1px solid #18ab29;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:20px 20px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
margin: 4px;
flex: 1 1 auto;
}
#pane {
flex: 1 1 auto;
padding: 5px;
flex-direction: row;
flex-wrap: wrap;
}
footer{
background-color: #ffffff;
padding: 5px 10px 5px 10px;
font-size: small;
left: 0;
width: 100%;
bottom: 0;
position: sticky;
}