-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (91 loc) · 1.81 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
*{
margin: 0;
border: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
span{
margin-top: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
color: green;
}
.conteudo-principal{
background-color: #ffffff;
height: 100%;
}
.form-conteudo{
margin-top: 70px;
background-color: #dcdbdb;
width: 400px;
height: 530px;
padding: 20px;
border-radius: 10px;
box-shadow: 10px 10px 2px rgba(0, 0, 0, 0.2);
}
.campo-form{
display: flex;
margin-bottom: 30px;
display: grid;
}
.campo-form label{
font-size: 20px;
}
.campo-form input {
margin-top: 10px;
height: 30px;
border-radius: 5px;
padding-left: 10px;
border: 1px solid #ccc;
outline: none;
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.campo-form input:focus {
border-color: #444a4f;
}
.campo-form input:hover {
background-color: rgb(230, 230, 230);
}
.form-conteudo h1{
text-transform: uppercase;
display: flex;
justify-content: center;
align-items: center;
margin: 10px;
margin-bottom: 15px;
font-weight: 500;
text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
}
/*! BTN */
.btn{
width: 100%;
}
.btn button{
width: 197px;
height: 60px;
border-radius: 5px;
font-size: 15px;
text-transform: uppercase;
cursor: pointer;
}
.btn-enviar{
background-color: rgb(133, 205, 133);
transition: background-color 0.3s ease;
}
.btn-enviar:hover{
background-color: rgb(105, 205, 105);
}
.btn-cancelar{
background-color: rgb(227, 138, 138);
transition: background-color 0.3s ease;
}
.btn-cancelar:hover{
background-color: rgb(222, 72, 72);
}