-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (112 loc) · 1.86 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
margin: 0;
padding: 0rem;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
}
header {
padding: 1ch;
display: flex;
justify-content: space-between;
align-items: start;
}
.brand {
margin: 0;
flex: 2;
font-weight: bold;
font-family: serif;
font-size: 300%;
color: rgb(121, 28, 28);
}
nav {
flex: 1;
}
nav {
display: flex;
gap: 3ch;
justify-content: space-around;
font-family: sans-serif;
font-weight: bold;
font-size: large;
}
a {
font-family: sans-serif;
font-size: larger;
font-weight: bold;
color: black;
text-decoration: none;
}
main {
margin: 0;
display: flex;
justify-content: start;
gap: 7ch;
height: 100vh;
}
article {
flex: 3;
}
article h1 {
margin: 0;
font-family: serif;
font-size: xx-large;
font-weight: bold;
}
aside ul {
display: flex;
flex-direction: column;
gap: 1ch;
margin: 0.8ch 1ch;
padding-left: 0;
width: 150%;
list-style: none;
}
li {
margin: 0 0 0 0;
padding: 0.25rem 0 0.25rem 0.25rem;
border-radius: 0.25rem;
background-color: rgb(121, 28, 28);
color: white;
}
li:hover {
cursor: pointer;
}
footer {
padding: 0 1rem;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(15, 3, 3);
height: 10vh;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
font-weight: bold;
color: rgb(238, 233, 233);
}
.testimonial {
border-radius: 0.25rem;
background-color: rgb(216, 216, 216);
margin: 0 0.25rem 0 0;
padding: 1mm;
height: 8%;
}
blockquote {
margin: 1rem 1.5rem 0 1.5rem;
padding: 0;
font-family: sans-serif;
font-style: italic;
font-weight: bold;
}
figcaption {
margin: 0rem 1.5rem 0 2rem;
padding: 0;
font-family: sans-serif;
font-style: italic;
font-weight: bold;
}
p {
font-family: sans-serif;
font-size: larger;
font-weight: 500;
}