-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles2.css
More file actions
67 lines (60 loc) · 1.02 KB
/
Copy pathstyles2.css
File metadata and controls
67 lines (60 loc) · 1.02 KB
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
body{
background-color: #d0b7e3;
display: block;
margin: auto;
}
* {
box-sizing: border-box;
}
.image{
width: 25%;
}
.heading{
text-align:center;
background-image: url("lines.jpg");
width: 100%;
height: 30%;
background-repeat: no-repeat;
background-position: top center;
padding:10%;
}
.menu {
float: left;
width: 20%;
text-align: center;
background-color: hsla(0, 0%, 90%, 0.33);;
}
.menu a {
padding: 8px;
margin-top: 7px;
display: block;
width: 100%;
}
.main {
float: left;
width: 60%;
padding: 0 20px;
background-color: hsla(0, 0%, 90%, 0.33);
}
.right {
float: left;
width: 20%;
padding: 15px;
text-align: center;
background-color: hsla(0, 0%, 90%, 0.33);
}
.main-article{
float: left;
}
aside{
width: 30%;
padding-left: 15px;
margin-left: 15px;
float: right;
}
@media only screen and (max-width: 620px) {
/* For mobile phones: */
.right, .main, .menu {
width: 100%;
}
}