forked from Dezenix/frontend-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
162 lines (137 loc) · 2.48 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: hsl(0, 100%, 74%);
background-image: url("/images/bg-intro-desktop.png");
color: #fff;
font-family: "Poppins", sans-serif;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
min-height: 100vh;
}
.container > div {
flex: 1;
padding: 0 20px;
}
h1 {
font-size: 40px;
line-height: 50px;
}
p {
font-size: 15px;
opacity: 0.8;
}
.box {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 6px rgba(0, 0, 0, 0.2);
padding: 30px;
margin-bottom: 20px;
text-align: center;
}
.box p {
margin: 0;
}
.box-blue {
background-color: hsl(248, 32%, 49%);
padding: 20px;
}
.form-control {
position: relative;
margin-bottom: 30px;
}
.form-control small {
color: hsl(0, 100%, 74%);
font-weight: 600;
position: absolute;
bottom: -24px;
right: 0;
opacity: 0;
text-align: right;
}
input {
border-radius: 5px;
border: 1.3px solid hsl(246, 25%, 77%);
font-family: "Poppins", sans-serif;
font-size: 14px;
font-weight: 500;
padding: 15px 25px;
display: block;
width: 100%;
}
.form-control.error input {
border-color: hsl(0, 100%, 74%);
color: hsl(0, 100%, 74%);
}
.form-control.error input::placeholder {
color: hsl(0, 100%, 74%);
}
.input:focus {
border: 1.3px solid hsl(248, 32%, 49%);
outline: none;
}
.form-control img {
opacity: 0;
position: absolute;
top: 50%;
right: 15px;
transform: translateY(-50%);
height: 20px;
}
.form-control.error img {
opacity: 1;
}
button {
background-color: hsl(154, 59%, 51%);
border-radius: 5px;
border: 1px solid hsl(154, 59%, 45%);
box-shadow: 0 2px hsl(154, 59%, 45%);
color: #fff;
cursor: pointer;
padding: 15px 25px;
display: block;
font-size: 14px;
width: 100%;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 1px;
font-family: "Poppins", sans-serif;
}
button:focus {
outline: none;
}
button:active {
box-shadow: 0 0 hsl(154, 59%, 45%);
transform: translateY(2px);
}
.form-control small {
opacity: 0;
}
.form-control.error small {
opacity: 1;
}
small {
display: inline;
color: #bbb;
font-size: 14px;
font-weight: 500;
margin-top: 15px;
}
small a {
color: hsl(0, 100%, 74%);
font-weight: 600;
text-decoration: none;
}
@media (max-width: 767px) {
.container {
flex-direction: column;
}
}