-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
110 lines (91 loc) · 1.98 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
html, body {
height: 100%;
margin: 0;
}
body {
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
.title {
margin-bottom: 30px;
margin-top: 0;
}
.container {
text-align: center;
background-color: #F8F3FE;
padding: 30px;
color: #282447;
border-radius: 15px;
box-shadow: 1px 1px 2px #18003f36;
gap: 0px;
margin: 0 100px;
}
.button {
cursor: pointer;
border-top-left-radius: 0px;
border-top-right-radius: 50px;
border-bottom-right-radius: 50px;
border-bottom-left-radius: 0px;
border: 0;
padding: 8px 16px;
background-color: #4d04c2;
color: #F8F3FE;
font-weight: 600;
}
.button:hover {
background-color: #7f44df;
}
.input {
border: 1px solid rgb(219, 219, 219);
padding: 8px 16px;
color: rgb(109, 109, 109);
margin: 0px -3px;
}
#extraHours {
padding: 7px 16px;
}
#cpf {
border-top-left-radius: 50px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 50px;
}
.input:focus {
border: 1px solid #4d04c2;
outline: none;
}
@media screen and (max-width: 913px) {
.container {
display: flex;
flex-direction: column;
}
.input {
border-radius: 50px;
margin-bottom: 10px;
}
#cpf {
border-radius: 50px;
}
.button {
border-radius: 50px;
}
}
@media screen and (max-width: 390px) {
.container {
display: flex;
flex-direction: column;
margin: 0 30px;
}
.input {
border-radius: 50px;
margin-bottom: 10px;
}
#cpf {
border-radius: 50px;
}
.button {
border-radius: 50px;
}
}