-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
113 lines (95 loc) · 1.57 KB
/
base.css
File metadata and controls
113 lines (95 loc) · 1.57 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
<style>
body, html, td, span, div, input, textarea {
font-family: sans-serif;
font-size: 14pt;
}
body {
background: url('cheese.png') top center repeat;
text-align: center;
opacity: 0.80;
}
h2 {
text-align: center;
font-size: 30pt;
font-weight: bold;
}
td {
vertical-align: top;
padding: 5px;
}
a, a:hover {
text-decoration: underline;
color: #0000bb;
}
a:visited {
color: #bb0000;
}
a.button:visited {
color: #0000bb;
}
.content {
text-align: left;
margin-left: auto;
margin-right: auto;
width: 90%;
background: #ffffcc;
padding: 20px;
border: 3px solid #ffb149;
}
.menu {
text-align: left;
padding: 10px 20px 35px 20px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
width: 90%;
background: #ffffcc;
border: 3px solid #ffb149;
}
.menu-user {
color: #000000;
font-weight: bold;
}
#menu-left {
float: left;
}
#menu-left a, #menu-left a:hover, #menu-left a:visited {
color: #000000;
}
#menu-right {
float: right;
}
#menu-right a, #menu-right a:hover, #menu-right a:visited {
color: #000000;
}
.message {
width: 50%;
color: #ff0000;
background: #ffdddd;
border: 2px solid #ff0000;
border-radius: 1em;
-moz-border-radius: 1em;
padding: 10px;
font-weight: bold;
text-align: center;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
}
input, textarea {
background-color: #ffffff;
}
.refresh {
float: center;
width: 90%;
text-align: right;
margin: auto;
padding-top: 0;
padding-bottom: 2pt;
margin-top: 0;
margin-bottom: 0;
}
.h2-with-refresh {
margin-bottom: 0;
}
</style>