forked from cs4241-19a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (61 loc) · 936 Bytes
/
Copy pathstyles.css
File metadata and controls
62 lines (61 loc) · 936 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
52
53
54
55
56
57
58
59
60
61
62
html, body{
width: 80%;
background-color: #f0e7e3;
padding-bottom: 30px;
}
body{
margin: 0% 10% 0% 22%;
}
h1{
width: 100%;
text-align: center;
background-color: #c9a4a0;
padding: 20px 50px 20px 50px;
box-shadow: 5px 5px 18px #888888;
}
p, li{
line-height: 175%;
}
div{
margin: 0px 20px 0px 20px;
}
* {
box-sizing: border-box;
}
.column {
float: left;
padding: 20px;
height: 930px;
}
.left{
width: 25%;
margin-left: -20px;
margin-right: 5%;
box-shadow: 5px 5px 18px #888888;
}
.right{
width: 70%;
margin-left: -20px;
box-shadow: 5px 5px 18px #888888;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.list-group {
margin-left: -25px;
}
hr.item {
margin: 10px 0px 10px -10px;
height: 1px;
background-color: #ccc;
border: none;
}
hr.title {
margin: 10px 0px 10px 0px;
height: 3px;
background-color: #c9a4a0;
border: none;
}