-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (104 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (104 loc) · 1.93 KB
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
body {
margin: 0px 0px 0px 0px;
}
.header {
color: white;
background-color: black;
display: flex;
font-family: 'Courier New', Courier, monospace;
font-size: 2vw;
justify-content: space-between;
padding-top: 2%;
padding-bottom: 1%;
margin-bottom: 1%;
top: 0;
position: sticky;
z-index: 1;
}
img {
padding-left: 2%;
padding-right: 2%;
object-fit: cover;
}
.reviewName {
flex: 1 1 200%;
}
.about {
flex: 1;
}
.popup {
display: flex;
flex: 1;
flex-direction: column;
padding-left: 2%;
padding-right: 2%;
}
.popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s
}
#blackCatPicture {
width: 100px;
height: 100px;
}
.individualCover, .individualCoverSmall {
flex: 1 1 300%;
padding-left: 40px;
padding-right: 40px;
padding-top: 40px;
padding-bottom: 40px;
filter:grayscale();
}
.individualCover {
width: 900px;
height: 1440px;
}
.individualCoverSmall {
width: 450px;
height: 720px;
}
.about:hover, .reviewName:hover, .popup:hover {
color: lightgray;
}
.popup .popuptext {
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
.individualCover:hover, .individualCoverSmall:hover {
filter: drop-shadow(10px 10px 20px rgba(36, 36, 36, 0.5));
}
#bookCoversRowOne, #bookCoversRowTwo, #bookCoversRowThree, #bookCoversRowFour {
display: flex;
justify-content: center;
margin-left: 5%;
margin-right: 5%;
}
#bookCovers, #reviewBookCovers{
display: flex;
flex-direction: vertical;
}
#bookCovers {
flex: 1 1 0;
}
#reviewBookCovers {
flex: 1 1 33%;
}
#bookInfo {
flex: 1 0 66%;
}
.reviewPageContent {
display: flex;
}
#bookInfo {
padding-left: 2%;
}