-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
191 lines (158 loc) · 3.22 KB
/
index.html
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<meta name="description" content="Website about Growfy marketing company">
<title>«growfy»</title>
</head>
<body>
<div class="rootpage">
<h1>Project «growfy»</h1>
<div class="rootpage__info">
<h2>Description of the project:</h2>
<p>Project «growfy» was created using HTML, CSS and basis JavaScript</p>
</div>
<h2>Ready pages:</h2>
<ol class="rootpage__list">
<li><a target="_blank" href="home.html">Main page</a></li>
</ol>
<div class="rootpage__tnx">
<h2>Thank you for the order!</h2>
</div>
<div class="rootpage__contacts">
<h2>Contacts:</h2>
<p>email: <a href="mailto:viktoriia.vynohradova8@gmail.com">viktoriia.vynohradova8@gmail.com</a></p>
<p>tel: <a href="tel:+38 063 216 66 13">+38 099 283 14 29</a></p>
</div>
</div>
</body>
<style>
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:regular,700&display=swap");
*,
*::before,
*::after {
padding: 0px;
margin: 0px;
border: 0px;
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
min-width: 320px;
width: 100%;
color: #fff;
background: #4a5d4a;
}
body {
font-family: Montserrat;
font-size: 100%;
line-height: 1;
font-size: 1rem;
}
a {
text-decoration: underline;
color: #ebe691;
}
a:visited {
text-decoration: underline;
color: #ebe691;
}
a:hover {
text-decoration: none;
}
ul li {
list-style: none;
}
img {
vertical-align: top;
}
.wrapper {
width: 100%;
min-height: 100%;
overflow: hidden;
}
.rootpage {
padding: 30px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
@media (max-width: 767px) {
.rootpage {
padding: 30px 15px;
}
}
h1 {
color: #ebe691;
font-size: 2.5rem;
margin: 0px 0px 1.25rem 0px;
}
@media (max-width: 767px) {
h1 {
font-size: 1.85rem;
margin: 0px 0px 1.25rem 0px;
}
}
h2 {
color: #ebe691;
font-size: 1.25rem;
margin: 0px 0px 1rem 0px;
}
@media (max-width: 767px) {
h2 {
font-size: 1.125rem;
margin: 0px 0px 1rem 0px;
}
}
.rootpage__info {
font-weight: 600;
font-size: 1.25rem;
color: #ebe691;
line-height: 140%;
margin: 0px 0px 1.5rem 0px;
}
.rootpage__list {
color: #ebe691;
font-weight: 600;
font-size: 1.15rem;
margin: 0px 0px 2.25rem 1.25rem;
transition: all 0.3s ease 0s;
}
.rootpage__list:hover {
transform: scale(1.2);
transition: all 0.3s ease 0s;
}
.rootpage__list li:not(:last-child) {
margin: 0px 0px 15px 0px;
}
.rootpage__contacts,
.rootpage__tnx {
border-radius: 200px;
padding: 20px 65px;
line-height: 140%;
}
@media (max-width: 767px) {
.rootpage__contacts,
.rootpage__tnx {
border-radius: 40px;
padding: 20px;
}
}
.rootpage__contacts {
background: #4982f5;
}
.rootpage__contacts a {
color: #ebe691;
}
.rootpage__tnx {
background: #d85082;
margin: 0px 0px 1rem 0px;
}
</style>
</html>