-
Notifications
You must be signed in to change notification settings - Fork 9
/
bytewise-magazine.css
98 lines (79 loc) · 1.25 KB
/
bytewise-magazine.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#nav-bar li {
float: right;
}
a {
text-decoration: none;
}
#nav-bar ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
#nav-bar li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
#nav-bar li a:hover:not(.active) {
background-color: #111;
}
#nav-bar .active {
background-color: #4CAF50;
}
.front-page {
background-color: rgb(204, 83, 83);
font-size: 30px;
/* margin-top: -20px; */
padding: 50px;
/* width: 40%; */
}
.caption {
width: 45%;
color: white;
}
.caption h3 {
margin-top: -20px;
}
section {
margin: auto;
width: 90%;
padding-top: 10px;
}
.articles {
float: left;
width: 47%;
background-color: lightblue;
padding: 20px;
}
.book-summaries {
float: right;
width: 46%;
background-color: rgb(204, 130, 130);
padding: 20px;
}
section h2 {
color: rgb(43, 36, 36);
}
section a {
color: rgb(37, 36, 36);
}
.scroll-section {
width: 48%;
float: left;
padding: 50px;
}
.scroll-section h2, .image {
display: inline-flex;
}
.image {
float: right;
height: 80px;
}
.story {
margin-top: 50px;
padding-left: 50px;
}