-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagenda.css
119 lines (102 loc) · 1.59 KB
/
agenda.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
109
110
111
112
113
114
115
116
117
118
119
/**
* Padding ao redor da página
* Estilo de fonte
* */
body {
padding: 3em;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/**
* Tabela ocupar 100% de largura
* */
table {
width: 100%;
text-align: center;
}
/**
* Efeito de cores a tabela
*/
tr:nth-child(even) {
background-color: #e7e3e3;
}
/**
* Margin para linha hr
* */
hr {
margin: 1.5em 0;
}
/**
*
* Deixar borda vermelha nos campos de erro
/* classe de erro para os campos */
.pure-form input.invalid,
.pure-form input.invalid:focus {
border-color: #e60000;
background: #ffe6e6;
}
/**
* Tamanho da fonte, fonte em negrito e alinhamento central
* */
label,
tr th {
font-size: 1.2em;
font-weight: bold;
text-align: center;
}
/**
* Cores e tamanhos dos botões do menu
* */
.button-warning {
background: rgb(223, 117, 20);
/* this is an orange */
}
.button-success {
background: rgb(28, 184, 65);
}
.button-error {
background: rgb(202, 60, 60);
}
.button-warning {
background: rgb(223, 117, 20);
}
.button-secondary {
background: rgb(66, 184, 221);
}
/**
* Sombra e arredondamento dos botões do menu
* */
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 8px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.btn-edit,
#id {
display: none;
}
.button-xlarge {
font-size: 125%;
}
/**
* Icones do menu
* */
i {
cursor: pointer;
margin-left: 5px;
}
/**
* Esconder ordenadores da tabela de contatos
* */
.fa-chevron-up {
display: none;
}
/**
* Espaçamento interno dos icones dentro dos botões
*/
button i,
a i {
padding-left: 5%;
}