-
Notifications
You must be signed in to change notification settings - Fork 10
/
new-tab.css
62 lines (53 loc) · 935 Bytes
/
new-tab.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
textarea, button {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
form {
margin-top: 2.5em;
max-width: 30em;
}
label[for=comment] {
color: #339966;
display: block;
font-style: italic;
margin-bottom: 0.375em;
}
.zennable {
position: relative;
}
.zennable textarea {
background-color: #f6f6f6;
border: 0;
border-radius: 3px;
box-sizing: border-box;
-moz-box-sizing: border-box;
color: #333;
display: block;
font-size: 1em;
height: 10em;
line-height: 1.5em;
padding: 0.25em 0.5em;
width: 100%;
}
.zennable textarea:focus {
background-color: white;
}
.zen-backdrop textarea {
height: 100%;
font-size: 6.375em;
max-width: 36em;
padding: 1em;
background-color: white;
margin: 0 auto;
border: 0;
resize: none;
border-radius: 0;
outline: none;
}
.zen-backdrop {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: white;
}