-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
48 lines (41 loc) · 796 Bytes
/
estilo.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
@charset "UTF-8";
body {
background: rgba(70, 142, 236, 0.437);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
color: black;
text-align: center;
}
h1 {
font-size: 2em;
font-variant-caps: all-small-caps;
}
input {
border-radius: 5px;
text-align: center;
cursor: pointer;
font-size: 1em;
}
section {
background: whitesmoke;
border-radius: 5px;
padding: 10px;
width: 400px;
margin: auto;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.363);
}
input[type="button"] {
border-radius: 5px;
opacity: 0.5;
text-align: center;
line-height: 25px;
color: white;
background-color: green;
font-size: 1.5em;
}
footer {
color: black;
text-align: center;
font-size: 0.9em;
}