forked from foss-aueb/network-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
79 lines (66 loc) · 1.02 KB
/
main.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
* {
padding: 0px;
margin: 0px;
}
body {
padding-top: 2em;
background: silver;
}
body, input, textarea {
color: rgb(55, 55, 55);
font: 300 15px/1.625 "Helvetica Neue",Helvetica,Arial,sans-serif;
}
#wrapper {
background: white;
max-width: 1000px;
margin: 0px auto 2em;
border-radius: 5px;
}
#header {
text-align: center;
padding: 2.5em 0 0;
}
/*
#header * {
margin: 0 3%;
}*/
#subheader {
margin: 1em 0 0;
background-color: dimgray;
color: ghostwhite;
}
#subheader * {
font-weight: normal;
}
.smallfont {
font-size: small;
}
#main {
padding: 2em;
background-color: lightgray;
}
form {
padding: 1.5em;
border-radius: 10px 10px 0 0;
background-color: white;
}
#response {
padding: 1.5em;
border-radius: 0 0 10px 10px;
background-color: white;
background-color: dimgray;
color: ghostwhite;
}
form p {
margin: 0.5em 0;
text-align: center;
}
#footer {
text-align: center;
}
#footer p {
padding: 2em 0;
font-family: sans-serif;
text-decoration: none;
font-size: 10px;
}