-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (72 loc) · 1.3 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
.title {
position: absolute;
left: 380px;
}
.mdl-layout--fixed-drawer>.mdl-layout__content {
margin-left: 360px;
display: flex;
}
.mdl-layout__drawer {
width: 360px;
overflow: hidden;
}
.mdl-layout__drawer.is-visible {
left: 0;
}
.mdl-navigation .mdl-icon-toggle.is-checked .mdl-icon-toggle__label {
color: #ffffff;
}
mdl-navigation .mdl-icon-toggle .mdl-icon-toggle__label {
color: #cccccc;
}
#add-item {
position: absolute;
bottom: 10px;
right: 25px;
z-index: 1;
}
#item-editors {
display: flex;
flex-direction: column;
width: 320px;
height: calc(100% - 80px);
overflow-x: hidden;
overflow-y: scroll;
padding: 20px;
padding-bottom: 60px;
}
.item-editor {
width: 300px;
display: flex;
flex-direction: column;
padding: 20px;
min-height: 140px;
margin: 20px auto;
}
.add-item-editor {
align-self: flex-end;
order:1;
}
.text-container {
display: flex;
}
.text-ctas {
display: flex;
/*display: none;*/
}
#canvas {
width: 680px;
height: 390px;
margin: auto;
display: flex;
flex-direction: column;
padding: 30px;
align-items: flex-end;
background-image: url("design.png");
}
.item {
color: #f9fc8b;
font-size: 30px;
line-height: 100%;
margin: 5px;
}