forked from browserpad/browserpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
41 lines (41 loc) · 942 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
html, body {
height: 100%; box-sizing: border-box; margin: 0;
}
textarea {
height: calc(100% - 2rem); box-sizing: border-box;
border: none; outline: none; resize: none;
font-family: monospace;
}
#textbox {
border-right: 1px solid PaleTurquoise;
border-radius: 0px;
border-color: darkgray;
background-color: transparent;
width: 100%;
padding: 0.5em;
overflow-y: scroll;
}
nav {
position: fixed; bottom: 0; left: 0;
box-sizing: border-box; width: 100%; height: 2rem; padding: 0 0.5em;
background-color: #eee; border-top: 1px solid silver;
line-height: 2rem; color: gray; font-family: sans-serif; font-size: 85%;
}
#controls {
float: right;
}
#save a {
text-decoration: none;
}
#open > input {
display: none;
}
#about > form {
text-align: right;
}
#about-icon {
text-decoration: none;
color: black;
font-weight: bold;
}
@media print { nav { display: none; } }