This repository was archived by the owner on Nov 8, 2022. It is now read-only.
forked from kenirwin/Weeding-Helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (71 loc) · 1.31 KB
/
style.css
File metadata and controls
84 lines (71 loc) · 1.31 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
body {
font-family: Arial, Helvetica, sans-serif;
}
h1 { padding-left: 110px;
background-image: url('images/logo-color100.png');
background-repeat: no-repeat;
height: 100px;
}
label {
font-weight: bold;
display: block;
width: 150px;
float: left;
}
.warn, .warning {
color: red;
}
.success {
color: blue;
}
div.example {
padding: .25em 1em;
background-color: #CFDBF3;
border-radius: 5px;
}
#license {
margin-top: 3em;
color: grey;
border-top: 1px solid grey;
padding: 1em 0;
}
#license a, #license a:visited {
color: grey;
}
#navlinks {
z-index: 2;
position: absolute;
top: 50px;
left: 60px;
line-height: 2em;
}
.action {
line-height: 2em;
white-space: nowrap;
}
#navlinks li, .action {
display: inline;
list-style: none;
border: 1px solid black;
padding: .25em;
border-radius: 5px;
margin-left: 1em;
background-color: #CFDBF3;
}
#navlinks li.turned-off {
background-color: #ccc;
}
#navlinks li a, #navlinks li a:visited, .action {
color: black;
font-family: arial, helvetica, sans-serif;
text-decoration: none;
font-weight: bold;
}
#navlinks li.turned-off a {
color: #666;
}
#navlinks li:hover {
background-color: lightgreen;
}
dt { padding-top: .5em }
dd { text-indent: -3em; margin-left: 3em;}