-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (97 loc) · 1.4 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (97 loc) · 1.4 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
@font-face {
font-family: BetterGrade;
src: url(./fonts/BetterGrade.woff2);
}
@font-face {
font-family: GaramondRegular;
src: url(./fonts/GaramondRegular.woff2);
font-display: swap;
}
/* Specific elements */
.rose {
z-index: -1;
max-width: 660px;
width: 50%;
position: absolute;
top: 0;
}
#rose-left {
left: 0;
}
#rose-right {
right: 0;
}
.carousel-image {
max-height: 700px;
width: auto;
}
footer {
margin-top: 200px;
margin-bottom: 8px;
}
.carousel-control {
width: 40px;
}
/* Helpers */
.font-cursive {
font-family: BetterGrade, cursive;
}
.text-center {
text-align: center;
}
.text-content-section {
padding: 0 20px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.center-wrapper {
display: flex;
align-items: center;
justify-content: center;
}
.left-wrapper {
display: flex;
align-items: center;
}
.rounded-border {
border-radius: 30px;
}
.uppercase {
text-transform: uppercase;
}
.invisible {
visibility: hidden;
}
.mr-2 {
margin-right: 12px;
}
.invert {
transform: scaleX(-1);
}
img[data-src] {
height: 100%;
max-height: 700px;
width: 532px;
background: lightgrey;
border: 1px solid gray;
}
body {
font-family: GaramondRegular, serif;
}
.font-weight-bold {
font-weight: bold;
}
.h-100 {
height: 100%;
}
.h-auto,
.carousel-image {
height: auto;
}
.w-100 {
width: 100%;
}
.mw-100 {
max-width: 100%;
}