-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (70 loc) · 1.17 KB
/
styles.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
.card {
border: none;
box-shadow: none;
}
.card-img-top {
border-radius: 0;
}
.card-title {
margin-bottom: 0.5rem;
}
.panels-container {
display: flex;
flex-wrap: wrap;
}
body {
text-align: center;
}
h1 {
text-align: center;
}
p {
text-align: center;
margin-left: auto;
margin-right: auto;
max-width: 800px;
}
ul {
text-align: center;
list-style-position: inside;
margin-left: auto;
margin-right: auto;
max-width: 800px;
}
.carousel-image-container {
position: relative;
overflow: hidden;
padding-top: 15.7895%; /* 19:3 aspect ratio (height:width) */
}
.carousel-image-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
table {
border-collapse: collapse;
border: 2px solid rgb(200,200,200);
letter-spacing: 1px;
font-size: 0.8rem;
margin-left: auto;
margin-right: auto;
}
td, th {
border: 1px solid rgb(190,190,190);
padding: 10px 20px;
}
th {
background-color: rgb(235,235,235);
}
td {
text-align: center;
}
tr:nth-child(even) td {
background-color: rgb(250,250,250);
}
tr:nth-child(odd) td {
background-color: rgb(245,245,245);
}