-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (76 loc) · 1.29 KB
/
style.css
File metadata and controls
86 lines (76 loc) · 1.29 KB
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
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
font-family: 'Roboto', sans-serif;
font-size: 30px;
margin: 0;
padding: 0;
background-color: rgb(58, 55, 55);
}
body > div {
width: 100vw;
height: 100vh;
display: flex;
flex-flow: column wrap;
justify-content: space-between;
align-items: flex-start;
}
#ctrl-panel {
user-select: none;
position: fixed;
width: 100%;
display: flex;
flex-wrap: row;
justify-content: space-between;
}
#ctrl-l {
float: left;
}
#ctrl-r {
float: right;
display: flex;
flex-flow: column wrap;
justify-content: space-between;
}
#ctrl-r > div:first-child {
display: flex;
}
#ctrl-panel-r {
position: fixed;
bottom: 0;
right: 0;
display: flex;
flex-flow: row wrap;
}
#grid {
display: inline-block;
background-color: rgb(234, 225, 208);
}
#grid:active {
cursor: pointer;
}
#grid > div {
float: left;
border: 1px solid grey;
box-sizing: border-box;
}
button {
background-color: rgb(61, 61, 61);
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Roboto;
font-size:15px;
padding:11px 23px;
text-decoration:none;
text-shadow:0px -1px 0px #2b665e;
}
button:hover {
background-color:#6c7c7c;
}
button:active {
position:relative;
top:1px;
}
button:focus {
outline: none;
}