-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (66 loc) · 1.08 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
78
body {
background-color: #cfe0d8;
margin: 0;
padding: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
header {
box-sizing: border-box;
background-image: url('images/sculpture.jpg');
background-attachment: scroll;
background-clip: border-box;
background-color: rgba(0, 0, 0, 0);
background-origin: padding-box;
background-size: cover;
height: 250px;
width: 1040px;
position: relative;
margin: -20px -20px 0 -20px;
}
h1 {
font-size: 2.0em;
margin: 0;
padding: 0;
position: absolute;
top: 55px;
width: 100%;
text-align: center;
text-shadow: 2px 2px 5px rgba(255, 255, 255, 1);
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.0em;
}
#content {
width: 1000px;
margin-left: auto;
margin-right: auto;
background-color: white;
padding: 20px;
}
article {
width: 700px;
}
aside {
width: 250px;
float: right;
}
article h3,
article p
{
margin-left: 25px;
}
.closefix {
clear: both;
}
table {
border-collapse: collapse;
border: 1px solid black;
margin: 0 auto;
}
table td {
border: 1px solid black;
padding: 4px 8px;
}