-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
74 lines (62 loc) · 1.34 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
@import url(https://fonts.googleapis.com/css?family=Google+Sans:400,700,i,bi);
* {
margin: 0;
box-sizing: border-box;
}
*:focus {
outline: none;
}
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
button {
border: none;
background-color: white;
border-right: 1px solid rgb(218, 220, 224);
}
span[onclick] {
cursor: default;
text-align: left;
}
select, input[type=number] {
width: auto;
}
#editor {
width: calc(100% - 2px);
border: 1px solid rgb(218, 220, 224);
height: calc(100vh - 50px);
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: left;
border-top: none;
}
#toolbar {
border-top: 1px solid rgb(218, 220, 224);
border-bottom: 1px solid rgb(218, 220, 224);
cursor: default;
}
#save {
text-align: left;
}