-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_style.scss
140 lines (123 loc) · 2.17 KB
/
main_style.scss
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
133
134
135
136
137
138
139
140
$title-color: #67bb83;
$sub-color: #000000;
$nav-text-primary: #f0f0fc;
html {
scroll-behavior: smooth;
}
// Hero main page
.hero {
background: radial-gradient(
62.81% 65.82% at 37.63% 32.2%,
rgba(255, 255, 255, 0) 96.12%,
#ffffff 100%
),
url("./images1/coffeemain.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
filter: contrast(111%) brightness(107%) saturate(149%);
}
.navbar-end a {
color: $sub-color;
&:hover {
font-weight: bold;
}
}
.hero-head {
.navbar-item img {
max-height: 3rem;
}
}
.hero-body {
.title {
font-family: "Dancing Script", cursive;
font-weight: 600;
font-size: 5rem;
}
.subtitle {
color: $sub-color;
font-family: "Raleway", sans-serif;
font-size: 1.5rem;
line-height: 150%;
letter-spacing: -0.01em;
width: 50%;
height: 35rem;
#p_logo {
font-weight: 600;
}
#coffee {
font-weight: 600;
color: #a54f05;
}
@media screen and (max-width: 600px) {
width: 100%;
}
}
}
.about-us .content {
.subtitle {
font-family: "Dancing Script", cursive;
font-size: 3rem;
font-weight: 600;
}
p {
font-family: "Raleway", sans-serif;
// font-weight: 600;
font-size: 1.3rem;
.is-size-3 {
color: $sub-color;
}
}
figure {
margin-right: 0;
margin-left: 0;
border-radius: 7px;
img {
display: inherit;
border-radius: 7px;
box-shadow: -8px 9px 6px rgba(3, 0, 0, 0.5);
transition: all 0.2s ease-in-out;
&:hover {
transform: scale(1.1);
box-shadow: -8px 9px 6px rgba(3, 0, 0, 0.2);
}
}
}
}
// ingredients page
.ingredients .content {
.subtitle {
font-family: "Dancing Script", cursive;
font-size: 3rem;
font-weight: 600;
}
p {
font-family: "Raleway", sans-serif;
font-size: 1.3rem;
.is-size-3 {
color: $sub-color;
}
}
figure {
margin-right: 0;
margin-left: 0;
border-radius: 7px;
img {
display: inherit;
border-radius: 7px;
box-shadow: -8px 9px 6px rgba(3, 0, 0, 0.5);
transition: all 0.2s ease-in-out;
&:hover {
transform: scale(1.1);
box-shadow: -8px 9px 6px rgba(3, 0, 0, 0.2);
}
}
}
}
// Contact us page
.contact-us {
.container #map {
width: 100%;
height: 400px;
}
}