forked from sshirokov/irc.webdesign
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
61 lines (48 loc) · 701 Bytes
/
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
body {
font-family: Arial, Helvetica, sans-serif;
margin-left: 200px;
font-size: 1em;
}
h1 {
font-weight: bold;
font-size: 1.8em;
}
h2 {
font-size: 1.6em;
}
h3 {
font-size: 1.4em;
}
h4 {
font-size: 1.2em;
}
h5 {
font-size: .8em;
}
h6 {
font-size: .6em;
}
ul {
list-style-type: none;
}
li {
display: inline;
margin-right: 15px;
}
header {
border-bottom: 1px solid black;
}
section {
height: 400px;
}
footer {
border-top: 1px solid black;
padding: 5px;
}
footer p {
font-size: 80%;
}
/*This is needed to display some of the properties on the new HTML5 tags*/
header, nav, footer, section {
display: block;
}