-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (71 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (71 loc) · 1.22 KB
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
:root {
--primary-color: #ccc;
--red-color: #c00;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
button {
cursor: pointer;
}
.form {
display: inline-flex;
justify-content: center;
flex-direction: column;
gap: 10px;
width: 400px;
padding: 10px;
}
.form__input {
height: 40px;
font-size: 1.2rem;
padding: 0 10px;
color: black;
border: 1px solid var(--primary-color);
}
.form__label {
font-weight: bold;
}
.form__title {
text-align: center;
}
.form__terms-link {
display: block;
margin-top: 5px;
}
.form__phone-group {
margin-top: 5px;
}
.form__terms-label {
cursor: pointer;
}
.form__phone-button {
height: 40px;
border: 1px solid var(--primary-color);
}
.form__phone-wrapper {
display: grid;
gap: 5px;
grid-template-columns: 1fr 60px;
}
.form__submit {
height: 40px;
cursor: pointer;
border-radius: 4px;
border: 1px solid var(--primary-color);
font-size: 1.2rem;
}
.form__input:focus {
outline: none;
border: 1px solid black;
}