forked from scheme-requests-for-implementation/srfi-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.css
146 lines (146 loc) · 2.25 KB
/
admin.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
a.eponymous {
font-family: Monaco, Courier, monospace;
overflow-wrap: break-word;
word-break: break-all;
word-wrap: break-word;
}
.announcement {
background: lightgreen;
border: solid 1px lightgrey;
border-radius: 10px;
padding: 0.5em 1em;
}
.authors, .based-on, .status {
font-weight: bold;
}
.based-on {
display: block;
}
body {
font-family: "Noto Sans", sans-serif;
font-size: 18px;
max-width: 46em;
}
button.close {
font-weight: bold;
padding: 5px 12px 5px 12px;
position: absolute;
right: 1em;
}
dt {
display: block;
font-size: 1.2em;
margin-bottom: 0.5em;
margin-top: 1em;
}
form {
border: solid 1px lightgrey;
border-radius: 10px;
margin: 1px;
padding: 10px;
}
form input {
border: solid 1px #E5E5E5;
border-radius: 5px;
margin: 0;
outline: 0;
padding: 9px;
width: 20em;
}
form input[type="checkbox"] {
transform: scale(2, 2);
width: 2em;
}
form label {
margin-left: 0.25em;
}
form .submit,
button.close,
button.sub,
button.unsub {
background: #116611;
border-radius: 3px;
border: none;
color: white;
cursor: pointer;
text-shadow: 1px 1px 1px #9E3F3F;
}
form .submit,
button.sub,
button.unsub {
padding: 10px 25px 10px 25px;
}
form .submit:hover {
text-decoration: underline;
}
form .title {
color: black;
font-size: 120%;
margin-top: 0;
}
h1 {
font-size: 150%;
margin: 0;
}
label {
white-space: nowrap;
}
span.antispam {
display: none;
}
img.srfi-logo {
margin-right: 0.5em;
vertical-align: middle;
width: 4em;
}
.subunsub {
position: relative;
}
.todo {
color: red;
font-family: monospace;
font-weight: bold;
}
figcaption {
text-align: center;
}
figure {
border: 1px solid lightgrey;
border-radius: 10px;
cursor: zoom-in;
display: block;
float: right;
margin: 1em 0 1em 1em;
max-width: calc(100% - 2em);
padding: 1em;
position: relative;
width: 40%;
}
figure a {
cursor: inherit;
}
figure img {
cursor: inherit;
width: 100%;
}
figure span {
display: none;
font-size: 200%;
}
figure span a {
cursor: zoom-out;
text-decoration: none;
}
figure:target {
cursor: default;
margin-left: 0;
pointer-events: none;
width: 100%;
}
figure:target span {
display: inline;
pointer-events: initial;
position: absolute;
right: 0.25em;
top: 0em;
}