-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (66 loc) · 1.16 KB
/
style.css
File metadata and controls
79 lines (66 loc) · 1.16 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
html, body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: aliceblue;
background-color: black;
margin: auto;
width: fit-content;
max-width: 400px;
}
h1 {
border: 1px solid grey;
padding: 1px 1px 1px 1px;
text-align: center;
}
h2 {
text-align: center;
}
textarea{
background-color: white;
}
#formularioUser {
background-color: rgba(229, 123, 255, 0.459);
border-radius: 10px;
padding: 25px;
margin: auto;
color: white;
}
#formularioUser input, textarea, select {
margin: auto;
background-color: rgb(64, 0, 80);
color: white;
}
#formularioUser label {
text-transform: capitalize;
color: rgba(255, 138, 138, 0.521);
font-weight: bold;
}
#formularioNome {
color: white;
background-color: rgba(220, 20, 60, 0.445);
padding: 15px;
border: 2px solid white;
border-radius: 20px;
}
#formularioNome input {
background-color: white;
color: black;
}
#formularioNome label {
color: white;
}
footer {
padding: 2px 2px;
text-align: center;
background-color: rgba(255, 0, 0, 0.24);
}
.centralizado {
margin: auto;
width: fit-content;
}
a {
text-decoration: none;
color: white;
}
a:hover {
color: darkred;
}