forked from gaetantri/editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
116 lines (103 loc) · 2.46 KB
/
screen.css
File metadata and controls
116 lines (103 loc) · 2.46 KB
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
114
115
116
@import url(http://fonts.googleapis.com/css?family=Droid+Sans&subset=latin);
@import url(http://fonts.googleapis.com/css?family=IM+Fell+DW+Pica:italic&subset=latin);
@import url(http://fonts.googleapis.com/css?family=Inconsolata&subset=latin);
html {
color: #222;
background-color: linen; /* linen = #faf0e6. */
font-family: "Droid Sans", sans-serif;
}
h1 {
text-align: right;
font-family: Inconsolata, monospace;
text-decoration: underline;
border-bottom: solid 1px #222;
}
h1 span.purple {
color: purple;
}
h2, h3, p, pre, ol, ul, dl, table, form {
margin-left: 20px;
margin-right: 20px;
}
ol>li, ul>li, dl>dt {
margin-top: 4pt;
}
h2, h3 {
color: purple;
font-family: 'IM Fell DW Pica', serif;
font-style: italic;
margin-top: 40px;
}
p {
text-indent: 7px;
}
pre, code, kbd {
font-family: Inconsolata, monospace;
background-color: #faffe6;
}
pre {
padding: 10px;
border: 1px dashed purple;
}
a, a:visited {
color: purple;
text-shadow: rgba(0,0,0,0) 1px 1px 0px;
text-decoration: none;
}
a:hover {
color: rgba(1,1,1,0.1);
text-shadow: purple 0px 0px 1px;
}
textarea {
width: 500px;
height: 150px;
}
/* Downloads */
.downloads {
margin: auto;
border-spacing: 7pt;
}
.downloads a {
display: block;
padding: 12pt;
border-radius: 3px;
-moz-border-radius: 3px;
color: #b70;
text-shadow: #755 1px 1px 0px, #664646 -1px -1px 0px,
#c90 2px 2px 0px, #c90 3px 3px 0px;
box-shadow: #94b -1px -1px 0px inset, #c95 -2px -2px 1px inset,
#94b 1px 1px 0px inset, #950 2px 2px 1px inset,
#606 0px 0px 50px inset;
-webkit-transition: 0.3s ease-out box-shadow;
-moz-transition: 0.3s ease-out box-shadow;
transition: 0.3s ease-out box-shadow;
letter-spacing: 1pt;
font-family: "Inconsolata", monospace;
font-size: 14pt;
font-style: italic;
font-weight: bold;
text-decoration: none;
}
.downloads a:hover {
box-shadow: #94b -1px -1px 0px inset, #c99 -2px -2px 1px inset,
#94b 1px 1px 0px inset, #953 2px 2px 1px inset,
#606 0px 0px 10px inset;
}
.sclib {
background-color: #9020d0;
}
.sclibmin {
background-color: #9440d4;
}
/* Comments */
div.idea {
border: 1px solid #503;
-webkit-box-shadow: 0.7pt 0.7pt 4px #503 inset;
-moz-box-shadow: 0.7pt 0.7pt 4px #503 inset;
border-radius: 3px;
}
table.comment tr {
border-radius: 5px 7px;
}
table.comment tr:nth-child(2n+1) { background-color: rgba(200,0,200, 0.2); }
table.comment tr:nth-child(2n) { background-color: rgba(200,0,200, 0.1); }