-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
132 lines (106 loc) · 1.69 KB
/
main.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
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
127
128
129
130
131
132
* {
box-sizing: border-box;
}
html {
overflow-x: hidden;
}
body {
overflow-x: hidden;
background-color: #eee;
}
p {
color: #333;
}
header {
background-image: url(image/paint.png);
background-size: cover;
background-position: 69% bottom;
height: 90vh;
box-shadow: inset 0 -200px 200px #707f62;
-webkit-box-shadow: inset 0 -100px 100px #707f62;
}
header h1 {
font-size: 4em;
}
header h2 {
font-size: 3.8em;
}
header p {
font-size: 1.5em;
}
.bg-none {
background: none;
}
.shadow-container {
background-color: #0005;
border-radius: 50px;
box-shadow: 0 0 100px 100px #0005
}
.divider {
display: block;
height: 10vh;
}
.line {
display: block;
height: 1px;
width: 100%;
background-color: #aaa;
}
.border-none {
border: none;
}
.card-img-top {
height: 250px;
object-fit: cover;
}
.border-inverse-cup {
border-right: solid 2px #707f62;
border-top: solid 2px #707f62;
border-left: solid 2px #707f62;
}
.border-cup {
border-right: solid 2px #707f62;
border-bottom: solid 2px #707f62;
border-left: solid 2px #707f62;
}
.justify {
text-justify: justify;
}
.balance {
text-wrap: balance;
}
.montserrat {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
}
.playfair {
font-family: "Playfair Display", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.lobster {
font-family: "Lobster", sans-serif;
font-weight: 400;
font-style: normal;
}
.bg-accent {
background-color: #707f62;
}
.white {
color: #eee;
}
.gold {
color: #f0b71c;
}
.observer-left {
opacity: 0;
transform: translateX(-30%);
transition: 700ms cubic-bezier(0, 0, 0.5, 1.0);
}
.show {
opacity: 1;
transform: translateX(0);
}