-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpieceStyles.css
91 lines (70 loc) · 1.58 KB
/
pieceStyles.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
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* General CSS attributes for the page */
a {
text-decoration: none;
}
/* html {
overflow: hidden;
} */
/* Header nav bar for all pages */
header {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 100.1vw;
background-color: rgba(190, 87, 41, 0.5);
margin-left: -9px; /* Adjust for body margin */
}
header a {
color:rgba(190, 87, 41, 1);
transition: ease-in 0.2s;
}
.hoverLink:hover {
color: rgba(190, 87, 41, 0.5);
transition: ease-in 0.2s;
}
/* Piece content */
main {
color: rgba(190, 87, 41, 1);
max-width: 50%;
min-height: 94vh;
font-family: 'Tinos';
margin-left: 1rem;
}
.pieceInfo {
margin-top: 1.5rem;
background-color: rgba(0, 0, 0, 0.55);
padding: 0.6rem;
}
.pieceTitle {
font-size: 1.43rem;
font-family: 'Playfair Display';
}
.pieceFormation {
font-size: 1.1rem;
}
hr {
border-top: 0.5px solid white;
}
.pieceText {
display: flex;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.55);
padding: 0.6rem;
font-size: 1em;
}
main p {
text-indent: 40px;
text-align: justify;
}
p a {
text-decoration: none;
color: rgba(190, 87, 41, 1);
font-weight: bold;
transition: ease-in 0.2s;
}
p a:hover {
color: rgba(190, 87, 41, 0.5);
transition: ease-in 0.2s;
}