-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
142 lines (140 loc) · 2.39 KB
/
style.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
133
134
135
136
137
138
139
140
141
142
body {
font-family: "Montserrat", sans-serif;
color: #394a51;
margin: 0;
}
h1,
h2 {
text-align: center;
}
h1 {
margin: 20px 0 10px 0;
}
h2 {
color: #7fa99b;
font-size: 18px;
font-weight: 500;
margin: 0 0 20px 0;
}
h3 {
font-size: 18px;
font-weight: 500;
}
p {
line-height: 1.5;
}
hr {
background: #7fa99b;
text-align: center;
border: none;
height: 1px;
width: 70%;
margin: 15px auto;
}
.background-img {
background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/044/328/original/wild-edible-weeds.jpg?1661286903");
background-size: cover;
background-repeat: repeat;
margin: 0;
padding: 20px;
}
.background {
background-image: linear-gradient(175deg, #f5f7fa 15%, #c3cfe2 85%);
opacity: 95%;
border-radius: 30px;
width: 60%;
margin: 30px auto;
padding: 20px 40px;
}
.menu {
display: flex;
list-style-type: none;
justify-content: right;
flex-wrap: wrap;
font-size: 14px;
padding: 0;
margin: 0;
}
.menu-item {
padding: 0;
margin: 10px;
}
.menu-item:hover {
text-decoration: underline;
color: #7fa99b;
cursor: pointer;
}
.join-us-link {
color: #7fa99b;
font-weight: 500;
}
.join-us-link:hover {
text-decoration: none;
cursor: pointer;
}
.text-highlight {
color: #7fa99b;
}
.wild-edibles {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 0;
margin: 0 10px;
}
.wild-edible-img {
border-radius: 50%;
max-width: 150px;
margin: 10px 15px 20px 10px;
transition: all 150ms ease-in-out;
}
.wild-edible-img:hover {
opacity: 50%;
transform: scale(1.1);
cursor: pointer;
}
.warning {
font-size: 14px;
margin: 15px 0;
}
.subscribe-footer {
display: flex;
}
.subscribe-title {
font-size: 22px;
font-weight: 500;
line-height: 28px;
margin-top: 15px;
}
.subscribe-text {
font-size: 18px;
line-height: 20px;
margin-top: 10px;
}
.subscribe-button {
color: #394a51;
background-color: #7fa99b;
font-family: "Montserrat", sans-serif;
display: block;
font-size: 16px;
font-weight: 600;
border: 1px solid #394a51;
border-radius: 25px;
margin: 20px 70px;
padding: 15px 30px;
transition: all 150ms ease-in-out;
box-shadow: 0px 3px 10px rgba(65, 86, 80, 0.5);
}
.subscribe-button:hover {
color: #fbf2d5;
background: #394a51;
cursor: pointer;
}
.coder {
font-family: monospace;
line-height: 24px;
text-align: center;
}
.coder-link {
color: #394a51;
}