-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 1.13 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (61 loc) · 1.13 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
body {
background-color: black;
font-family: "Aldrich", sans-serif;
}
#main {
color: white;
height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-bottom: 12vh;
box-sizing: border-box;
}
#review-button {
text-decoration: none;
color: black;
background-color: white;
padding: 15px 30px;
border: 1px solid #222222;
border-radius: 4px;
transition: background-color 0.2s, transform 0.2s;
}
#review-button:hover {
background-color: khaki;
transform: scale(1.05);
}
#reviews-title {
color: white;
text-align: center;
}
.panel-title {
color: white;
}
.content-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
padding: 20px;
gap: 20px;
}
.content-panel {
background-color: #222222;
border-radius: 5px;
overflow: hidden;
cursor: pointer;
transition: transform 0.2s;
aspect-ratio: 3 / 4;
display: flex;
flex-direction: column;
text-decoration: none;
text-align: center;
}
.content-panel:hover {
transform: scale(1.01);
}
.panel-cover {
width: 100%;
height: 80%;
margin: auto;
}