-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
113 lines (96 loc) · 1.47 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
display: flex;
flex-direction: column;
align-items: stretch;
}
button {
margin: 0;
padding: 0;
}
.selectedButton {
text-decoration: underline;
}
#filebar {
display: flex;
flex: none;
}
#toolbar {
display: flex;
flex: none;
}
#fontBold {
width: 20px;
}
#fontItalics {
width: 20px;
font-family: serif;
}
.colorButton {
display: flex;
}
.colorChipBackground {
width: 10px;
height: 10px;
border: 1px solid #000;
margin: 2px;
background: url(color_chip_background.svg);
}
.colorChip {
position: relative;
left: -3px;
opacity: 1.0;
top: 1px;
border: 0;
width: 10px;
height: 10px;
background-color: #000;
margin: 2px;
margin-left: -10px;
}
#fillChip {
position: relative;
left: -3px;
opacity: 0.7;
top: 1px;
border: 0;
width: 10px;
height: 10px;
background-color: #0f0;
margin: 2px;
margin-left: -10px;
}
.colorPopup {
background-color: #fff;
border: 1px solid #999;
}
.colorPopupCell {
width: 15px;
height: 15px;
margin: 1px;
}
.colorPopupCellSelected {
width: 15px;
height: 15px;
border: 1px solid #000;
margin: 0;
}
#naclContainer {
flex: 1;
display: flex;
align-items: stretch;
}
#naclPlugin {
flex: 1;
}
#clipboardio {
position: absolute;
width: 10px;
height: 10px;
left: -20px;
top: -20px;
}