-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (52 loc) · 1.28 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
#listaRegistros{ display: none; }
#cadastroRegistro{
display: none;
flex-direction: column;
gap: 30px;
}
body[page=lista] #listaRegistros{ display: block; }
body[page=cadastro] #cadastroRegistro{ display: flex; }
body{
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}
table{
width: 100%;
border-collapse: collapse;
}
table th,
table td{
font-size: 14px;
padding: 10px 15px;
border: solid 1px #ccc;
}
button{
border: none;
border-radius: 4px;
cursor: pointer;
background-color: #07a;
color: #fff;
margin: 3px;
padding: 10px 15px;
}
button.cinza{
background-color: #ccc;
color: #666;
}
button.vermelho{
background-color: #a00;
}
button:hover{
opacity: 0.8;
}
input{
border: solid 1px #ccc;
border-radius: 4px;
padding: 10px;
}
.label>div{
display: flex;
}
.label>div>input{
flex: 1;
}