seraphim
Brian Burns
More narration.
More talking.
More narration.
More talking.
More narration.
More talking.
More narration.
More talking.
31
CSS
1
/*This sets the background color for our comic page*/
2
3
html body {
4
background-color: #2b2b2b;
5
}
6
7
8
/*These IDs are for the invisible divs that will hold our comic together*/
9
10
#page {
11
height: 100%;
12
width: 800px;
13
margin-right: auto;
14
margin-left: auto;
15
}
16
17
#titleblock {
18
height: 160px;
19
width: 800px;
20
padding-left: 10px;
21
}
22
23
/*These are the text styles for the headline and byline*/
24
25
h1 {
26
font-family: "Comic Sans MS";
27
font-style: italic;
28
font-weight: 900;
29
font-size: 45px;
30
color: white;
31
}
32
33
h2 {
34
font-family: "Comic Sans MS";
35
font-style: italic;
36
font-weight: 900;
37
font-size: 16px;
38
color: white;
39
}
40
41
/*These IDs are for the panels that will make up our comic.*/
42
43
#panel1 {
44
position:relative;
45
height: 280px;
46
width: 780px;
47
border:10px solid #2b2b2b;
48
float: left;
49
background-color: #28d8eb;
50
overflow: hidden;
51
}
1