-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
73 lines (61 loc) · 1.07 KB
/
estilo.css
File metadata and controls
73 lines (61 loc) · 1.07 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: LightGray;
padding: 10px;
}
h1 {
margin-bottom: 30px;
}
a {
text-decoration: none;
}
label, button {
font-weight: bold;
cursor: pointer;
}
label {
font-size: 1.2em;
}
input, button {
height: 30px;
font-size: 0.9em;
padding: 5px;
border-radius: 10px;
border: 1px solid black;
margin: 5px;
}
input {
width: 500px;
}
button {
width: 135px;
background-color: #87cefa;
}
button:hover {
color: #3434ce;
border: 1px solid white;
background: rgb(246,155,227);
background: linear-gradient(49deg, rgba(246,155,227,1) 3%, rgba(215,211,242,1) 50%, rgba(179,249,249,1) 90%);
transition: all 0.3s;
}
table {
border: 1px solid black;
width: 800px;
border-radius: 5px;
background-color: white;
margin-top: 10px;
}
tr:hover {
background-color: LightGray;
}
th, td {
padding: 5px;
margin: 0;
border-bottom: 1px dashed gray;
text-align: center;
}