-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (69 loc) · 1.23 KB
/
style.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
.main-brand {
font-size:60px;
text-align:center;
font-weight:normal;
font-family: 'Great Vibes', cursive;
margin:60px 0;
}
.story {
border:1px solid #333;
padding:5px;
}
.row {
display:flex;
align-items:stretch;
}
.story-title {
font-weight:normal;
font-style:italic;
font-size:30px;
margin: 15px 0;
text-align:center;
}
.story-text {
line-height:1.5;
}
.quarter {
flex-grow: 1;
}
.half {
flex-grow:2;
}
.story-image {
width:100%;
font-size: 18px;
}
.three-quarter {
width:75%;
}
.nav-list {
display: flex;
flex-direction: column;
margin:0;
padding:0;
list-style:none;
color:#555;
}
.nav-item {
width:100%;
flex:1;
display:flex;
align-items:center;
padding-left:25px;
font-size:30px;
color:#555;
font-weight:bold;
font-family: Arial;
}
.nav-link a {
text-decoration:none;
color:#555;
}
.nav-item a:hover {
text-decoration:underline;
}
.nav-item:nth-child(1) { background-color: blue; }
.nav-item:nth-child(2) { background-color: red; }
.nav-item:nth-child(3) { background-color: green; }
.nav-item:nth-child(4) { background-color: yellow; }
.nav-item:nth-child(5) { background-color: brown; }