-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.css
87 lines (82 loc) · 1.66 KB
/
main.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
* { box-sizing: border-box; }
body, html { overflow: hidden; }
body {
margin:0;
padding:0;
font-family: sans-serif;
font-size: 16px;
line-height: 1.25em;
transition: background-color 1s ease-out;
}
/* Textarea */
#Textarea {
border:0px;
margin:0;
padding: .75rem .75rem .25rem .75rem;
outline:0;
resize: none;
-webkit-overflow-scrolling: touch;
transition: background-color 1s ease-out, color 1s ease-out;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
/* Fallback styles */
font-family: Menlo, monospace;
font-size: 16px;
font-weight: 400;
line-height: 1.45em;
}
/* Disable default browser disabled styles */
#Textarea:disabled {
background-color: initial;
color: initial;
}
/* Drawer */
.drawer {
background-color:#fff;
color: #ccc;
padding:.5rem;
}
.drawer form > div {
margin-bottom: 1rem;
}
.drawer .drawer-title {
color:#000;
}
#CssTextarea {
font-size: .75em;
line-height: 1.45em;
width: 100%;
font-family: Menlo, monospace;
}
/* Footer */
.footer {
/*position: absolute; bottom: 0; width: 100%;*/
height: 1.5rem;
font-size: .70rem;
letter-spacing: .025em;
background-color:rgba(128,128,128,1);
color: rgba(255,255,255,1);
opacity: 0.5;
transition: opacity .33s ease-out;
}
.footer:hover {
opacity: 0.75;
}
.footer > div {
padding:0 0.85rem;
position: relative;
top: 2px;
}
.footer .status {
cursor:default;
}
.footer .settings {
cursor: pointer;
}
#scrim.paper-drawer-panel {
/* This transition fixes a bug when running in iframe and docked to the right */
transition: opacity ease-in-out 0.38s;
/*background-color: rgba(0, 0, 0, 0.05);*/
background-color: rgba(0, 0, 0, 0);
}