-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
112 lines (92 loc) · 1.8 KB
/
estilo.css
File metadata and controls
112 lines (92 loc) · 1.8 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
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
html {
font-size: 13px;
}
@keyframes transicao-paginas {
from {opacity: 0;}
to {opacity: 1;}
}
body {
opacity: 1;
animation-name: transicao-paginas;
animation-duration: 0.5s;
}
.menu-item {
background-color: rgba(0, 0, 0, 0.05);
padding: 5px 10px;
cursor: pointer;
user-select: none;
}
.menu-header {
background-color: rgba(0, 0, 0, 0.0);
padding: 10px 10px;
user-select: none;
}
.menu-titulo {
padding: 10px 10px;
letter-spacing: 3px;
}
.menu-item:hover {
background-color: rgba(0, 0, 0, 0.1);
padding: 5px 10px;
}
.menu-item:active {
background-color: rgba(0, 0, 0, 0.1);
padding: 5px 10px;
}
.menu-item-icon {
margin-right: .5rem !important;
}
.ferramenta-tooltip {
background-color: rgba(230, 230, 230);
border: solid 1px rgba(0,0,0,0.1);
position: absolute;
padding: 10px;
left: 201px;
width: 300px;
z-index: 999;
}
.menu {
position: absolute;
left: 0px;
top: 0px;
bottom: 0px;
width: 200px;
background-color: rgba(0,0,0,0.05);
border-right: solid 1px rgba(0,0,0,0.2);
overflow: auto;
}
.botao-iniciar-verde {
background-color: rgba(0,255,0,0.5);
}
.botao-iniciar-vermelho {
background-color: rgba(255, 0, 0, 0.4);
}
.botao-iniciar-verde:hover {
background-color: rgba(0,255,0,0.4);
}
.botao-iniciar-vermelho:hover {
background-color: rgba(255, 0, 0, 0.3);
}
.mini-info {
color: rgba(0,0,0,0.7);
font-size: 10px;
}
.negrito {
font-weight: bold;
}
.ferramenta-selecionada {
background-color: rgba(0, 0, 255, 0.2);
}
.creditos {
position: absolute;
bottom: 5px;
left: 5px;
font-size: 10px;
color: rgba(0,0,0,0.7);
}
h1, h2, h3 {
font-size: 13px;
font-weight: normal;
padding: none;
margin: none;
}