-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (82 loc) · 1.7 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
* {
margin: 0;
padding: 0;
color: rgb(34, 34, 34);
box-sizing: border-box;
}
body {
scroll-behavior: smooth;
text-rendering: optimizeSpeed;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
width: 100%;
}
/* СУПЕР-КОД ЩОБ ПРИБРАТИ СТРЕЛОЧКИ З ІНПУТІВ */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
appearance: none;
-moz-appearance: textfield;
}
input {
display: inline;
}
.main-wrapper {
margin: 100px auto;
}
.form-wrapper {
margin: 0 auto;
padding: 15px 20px 20px;
height: 450px;
width: 550px;
border: 4px solid rgb(21, 150, 96);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background-color: rgb(211, 248, 236);
}
.input-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
}
.input-title {
font-size: 18px;
font-weight: 700;
}
.input-field {
height: 37px;
border: 3px solid rgb(21, 150, 96);
width: 250px;
align-self: end;
font-size: 18px;
font-weight: 600;
border-radius: 7px;
padding: 0 5px;
}
.input-field:focus {
border: 3px solid rgb(0, 82, 48);
outline:none;
}
.registr-button {
width: 200px;
height: 40px;
font-size: 18px;
font-weight: 600;
border-radius: 7px;
cursor: pointer;
border: 3px solid rgb(21, 150, 96);
background-color: rgb(243, 253, 244);
}
.registr-button:hover {
border: 3px solid rgb(0, 82, 48);
background-color: rgb(0, 82, 48);
color: aliceblue;
transition-duration: 0.07s;
transform: scale(1.07);
}