forked from AnthonyParkerJr/HTML-CSS-Pair-Programming-Lab-1
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmockup.css
More file actions
51 lines (38 loc) · 705 Bytes
/
mockup.css
File metadata and controls
51 lines (38 loc) · 705 Bytes
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
h1 {
color: rgb(206, 97, 24);
background-color: rgb(37, 37, 37);
padding: 30px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: lighter;
}
a {
color: rgb(206, 97, 24);
text-decoration: none;
}
.info-content {
margin-left: 250px;
}
.footer {
text-align: center;
background-color: rgb(37, 37, 37);
position: bottom;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: lighter;
padding: 5px;
}
.container {
width: 1080px;
}
#bridge {
float: left;
}
.sidebar {
width: 300px;
float: right;
padding-left: 50px;
background-color: lightgrey;
}
.main-content {
width: 650px;
}