-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
86 lines (74 loc) · 1.65 KB
/
estilo.css
File metadata and controls
86 lines (74 loc) · 1.65 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
body {
background-color: rgb(0, 89, 255);
color: white;
font: normal 12pt arial;
}
header {
font: oblique 20pt Oswald;
text-align: center;
}
section {
background-color: white;
border-radius: 15px;
width: 500px;
height: auto;
margin: auto;
padding: 15px;
color: black;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.575);
min-height: 100px;
}
div {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 28px;
font-weight: 500;
color: rgb(95, 144, 236);
letter-spacing: 0.5px;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
input {
margin-bottom: 20px;
}
footer {
text-align: center;
font: italic 10pt arial;
margin-top: 5px;
}
#btn {
background: white;
color: rgb(0, 0, 0);
border: none;
padding: 12px 28px;
font-size: 16px;
font-weight: 600;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
letter-spacing: 0.5px;
margin-top: 15px;
}
/* Hover */
#btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(64, 62, 109, 0.4);
background: rgb(255, 95, 89);
}
/* Click */
#btn:active {
transform: translateY(0);
box-shadow: 0 6px 15px rgba(79, 70, 229, 0.25);
}
/* Focus acessível */
#btn:focus {
outline: none;
box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.4);
}