-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
77 lines (77 loc) · 1.36 KB
/
style.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
*{
color: #000000;
font-family: sans-serif;
}
body{
margin: .5em;
}
.nav ul{
margin: 0 auto;
width: 1000px;
}
a{
color: #000000;
text-decoration: underline;
}
a:hover, a:focus{
color: #0000FF;
}
a:active{
background-color: #FFFFFF;
color: #FF0000;
}
.nav ul{
list-style-type: none;
padding: 0;
}
.nav ul li{
display: inline;
padding-left: .25em;
padding-right: .25em;
}
.header{
border-bottom: .2em solid #000000;
min-height: 1em;
font-size: 1.1em;
padding-bottom: .3em;
}
.header a{
font-weight: bold;
}
.footer{
border-top: .2em solid #000000;
text-align: right;
padding-top: .3em;
}
.footer a{
font-size: .9em;
}
canvas, canvas:active, canvas:focus{
cursor: crosshair;
}
input, label{
font-size: .8em;
background: #FFFFFF;
max-width: 4.5em;
border: 0;
vertical-align: middle;
}
#status{
font-size: .9em;
font-weight: bold;
padding-left: .5em;
border-left: .1em dashed;
}
#zeichenbrett{
z-index: 0;
}
#helperlayer{
position: absolute;
z-index: 1;
}
@media screen and (max-width: 1024px){
#maincontent, .nav ul{
margin: auto;
width: auto;
}
}