blob: dc51087bc0540640238f6b5af1ff7c6702bcf4ba (
plain)
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
|
@mixin box-shadow($shadow) {
-webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow;
box-shadow: $shadow;
}
body.loggedin {
div.infobar * {
margin: 0 1em;
}
}
body {
font-family: sans-serif;
margin: 0;
padding: 0;
div.infobar {
text-align: right;
padding: .1em 0;
input[type="text"],
input[type="password"] {
width: 20%;
}
input[type="submit"] {
background: transparent;
border: none;
font-size: 1em;
padding: 0;
}
a {
color: #000000;
}
}
div.main {
form {
fieldset li {
clear: both;
padding: .5em 0;
label {
width: 25%;
float: left;
}
input, textarea {
width: 60%;
float: left;
}
input[type="password"] {
width: 30%;
}
p.form_data {
margin-left: 25%;
}
&.wide {
clear: both;
padding: .5em 0;
label {
width: 100%;
float: none;
}
input, textarea {
width: 100%;
float: none;
}
}
}
table {
border: solid 1px black;
border-collapse: collapse;
border-spacing: 0;
td, th {
border: solid 1px black;
padding: 0;
.cell_width {
display: block;
overflow: hidden;
height: 0px;
@extend input[type="text"];
}
input {
outline: solid 1px black;
width: 100%;
background: transparent;
border: 0;
&:focus {
outline-color: blue;
@include box-shadow(inset 0 0 1pt 1pt rgba(0,0,1,.5));
}
}
}
}
}
}
}
h1 {
text-align: center;
}
a {
text-decoration: none;
}
input[type="text"], textarea {
font-family: monospace;
font-size: 12pt;
}
iframe {
width: 100%;
height: 100%;
}
.error {
font-weight: bold;
color: red;
}
.http404 {
color: red;
}
.small {
font-size: .5em;
}
|