-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
108 lines (104 loc) · 2.29 KB
/
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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
*{
font-family: 'Open Sans', sans-serif;
}
.menu{
background-color: #2d2acc;
overflow: hidden; /*esconder o que não couber*/
margin-bottom: 10px;
}
.menu a{
float: left;
color: #f1f1f1;
text-align: center;
padding: 10px;
font-size: 17px;
text-decoration: none;
}
.menu a:hover{
background-color: #dddddd;
color: #000000;
}
.menu a.ativo{
background-color: #05090e;
color: white;
}
.form{
background-color:#2d2acc;
color: #faf5f5;
}
.form-group{
display: flex;
flex-direction: row;
}
.form-group label{
flex: none;
display: block;
width: 120px;
font-weight: bold;
font-size: 14px;
}
.form-group label.right-inline{
text-align: right;
padding-right: 8px;
padding-left: 10px;
width: auto;
}
.form-group .input-control{
display: block;
margin-bottom: 10px;
margin-right: 8px;
padding: 4px;
flex: 1 1 auto;
}
button{
color:#2d2acc;
background-color: #d2c8ec;
font-size: 15px;
padding: 5px;
margin: 5px ;
cursor: pointer;
min-width: 100px;
}
/*estilo da tabela obtido em https://divtable.com/table-styler/*/
table.paleBlueRows {
border: 1px solid #FFFFFF;
width: 100%;/*alterado manualmente*/
height: 100px;/*alterado manualmente*/
text-align: center;
border-collapse: collapse;
}
table.paleBlueRows td, table.paleBlueRows th {
border: 1px solid #FFFFFF;
padding: 1px 2px;
}
table.paleBlueRows tbody td {
font-size: 13px;
}
table.paleBlueRows tr:nth-child(even) {
background: #8e8dee;
}
table.paleBlueRows thead {
background: #2d2acc;
border-bottom: 5px solid #FFFFFF;
}
table.paleBlueRows thead th {
font-size: 17px;
font-weight: bold;
color: #FFFFFF;
text-align: center;
border-left: 2px solid #FFFFFF;
}
table.paleBlueRows thead th:first-child {
border-left: none;
}
table.paleBlueRows tfoot {
font-size: 14px;
font-weight: bold;
color: #333333;
background:#2d2acc;
border-top: 3px solid #444444;
}
table.paleBlueRows tfoot td {
font-size: 14px;
}