-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (56 loc) · 961 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Big+Shoulders+Text&display=swap');
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #FFF;
font-family: 'Big Shoulders Text', cursive;
}
/* CANVAS */
.canvas-container {
height: 100vh;
display: flex;
}
.canvas-accordion .card {
border: 0;
border-radius: 0;
}
.canvas-accordion .card-header {
padding: 0;
/* border: 0; */
}
.canvas-accordion .card-body {
padding: 0.5rem;
}
.canvas-icons {
list-style: none;
padding: 0;
margin: 0;
display: inline-flex;
flex-wrap: wrap;
}
.canvas-icons li img {
width: 50px;
padding: 0.5rem;
}
.canvas-area {
width: 100%;
height: 100%;
background: #FFF url('img/grid.png') repeat;
}
/* UTILITY */
.vw-100 {
width: 100vh;
}
.vh-100 {
height: 100vh;
}
.ph-100 {
height: 100%;
}
.pw-100 {
width: 100%;
}
.br-1 {
border: 1px solid rgba(0,0,0,.125);
}