-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhiplash.css
35 lines (34 loc) · 950 Bytes
/
whiplash.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
html, body
{ position: absolute; padding: 0; margin: 0; }
h1, h2, h3 {
text-align: center;
font-weight: bold;
font-family: sans;
color: rgba(0, 0, 0, 0.5);
}
.fascia-canvas {
position: absolute; top: 0; bottom: 0; right: 0; left: 0;
display: block; margin: 0; border: 0; z-index: 1;
background-color: #ddd; color: #222; }
.selected { background-color: rgba(192,192,255,0.8); }
.bbar {
position: fixed;
display: block; z-index: 2;
margin: 1%; border-radius: 10 }
.bbar div { display: inline-block; height: 100% }
.bbar button:first-child {
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
.bbar button:last-child {
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
.page {
position: absolute; top: 0; left: 0; z-index: 3;
border: 5px solid black;
background-color: #ddd;
border-radius: 20px;
border-width: 5px;
box-sizing: border-box;
}