-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (133 loc) · 2.92 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #000;
color: white;
overflow: auto;
}
header {
text-align: center;
background-color: #0000;
}
nav {
display: flex;
justify-content: center; /* Distribute space between items */
background-color: #000000; /* Background color for the navigation bar */
font-family: 'Gabriola', 'Almendra', 'Ink Free', 'Frank Ruehl CLM', sans-serif;
font-size: 22pt;
}
nav a {
flex: 1;
background-color: transparent;
color: #A83F3F;
text-decoration: none;
margin: 0 15px;
padding: 5px;
display: inline-block;
text-align: center;
line-height: 125%;
transition: background-color 0.3s ease;
max-width: 150px;
}
nav a:hover {
background-color: #1a0202; /* Change background color on hover */
}
.banner-container {
position: relative;
}
.banner-container img {
max-width: 100%;
height: auto;
}
.title-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.title {
color: #A83F3F;
margin: 0;
justify-self: center;
font-size: 62pt;
font-family: 'Gabriola', 'Almendra', 'Ink Free', 'Frank Ruehl CLM', sans-serif;
}
.subtitle {
color: #A83F3F;
margin: 0;
font-size: 42pt;
font-family: 'Gabriola', 'Almendra', 'Ink Free', 'Frank Ruehl CLM', sans-serif;
}
.subtitle2 {
color: #A83F3F;
margin: 0;
font-size: 22pt;
font-family: 'Gabriola', 'Almendra', 'Ink Free', 'Frank Ruehl CLM', sans-serif;
}
section {
padding: 20px;
text-align: center;
}
main {
display: flex;
flex-direction: column; /* Display children in a column */
padding: 20px;
}
.imageround {
max-width: 100%;
height: 200pt;
}
.imageroundlink {
max-width: 100%;
height: 200pt;
transition: transform 0.3s ease; /* Smooth transition effect */
}
/* Hover state styles */
.imageroundlink:hover {
transform: scale(1.1); /* Scale the image by 10% on hover */
}
.imagefull {
max-width: 100%;
height: 400pt;
}
.imagefull2 {
max-width: 100%;
height: 100%;
}
.twoColumn {
display: flex;
max-width: 1000px;
padding: 20px;
margin: 20px auto;
}
.audio-player {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
#playPauseBtn {
margin-right: 10px;
}
.AlignC {
align-content: Center;
}
.Center {
text-align: center;
align-content: center;
}
.leftColumn {
flex-basis: 48%; /* Adjust the width of the left column */
margin-right: 20px; /* Add margin to create space between columns */
}
.rightColumn {
flex-basis: 48%; /* Adjust the width of the right column */
}
.article-container {
max-width: 800px; /* Adjust this value as needed */
margin: 0 auto; /* Center the container horizontally */
padding: 20px; /* Add some padding for spacing */
text-align: justify;
}