-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (108 loc) · 2.07 KB
/
style.css
File metadata and controls
125 lines (108 loc) · 2.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
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
120
121
122
123
124
125
.floor:hover {
cursor: pointer;
}
.agent-actions {
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
.agent-actions th {
padding: 0.5ex;
border: 1px solid hsl(240, 10%, 90%);
background: hsl(240, 10%, 85%);
text-align: center;
}
.agent-actions td {
padding: 0.25ex;
border: 1px solid hsl(240, 20%, 80%);
text-align: center;
}
.robot {
transition: transform 2.0s;
}
.floor {
fill: white;
}
.floor.clean {
fill: hsl(240, 10%, 90%);
transition: fill 2.0s;
}
.floor.dirty {
fill: hsl(0, 50%, 50%);
transition: fill 0.1s;
}
.btn {
border-radius: 10%;
}
.btn:hover {
cursor: pointer;
background-color: aquamarine;
}
.btn-vacuum {
border-radius: 50%;
background-color: aquamarine;
}
.btn-vacuum:hover {
cursor: pointer;
background-color: rgb(122, 102, 235);
color: white;
}
.title {
font-size: 3rem;
color: rgb(75, 243, 131);
}
a {
text-decoration: none;
}
.link {
text-decoration: none;
color: antiquewhite;
text-align: center;
padding: 10px;
padding-top: 20px;
padding-bottom: 20px;
font-size: 1.3rem;
border-bottom: 1px solid white;
border-bottom-right-radius: 20%;
border-top-right-radius: 20%;
margin-top: 5px;
}
.link:hover {
background-color: white;
color: blue;
}
.link.ativo {
background-color: rgb(0, 253, 63);
color: rgb(255, 0, 191);
}
.linkName:hover {
color: aqua;
}
.card-title {
color: rgb(114, 243, 135);
text-align: center;
font-size: 2rem;
}
.card-horizontal {
display: flex;
flex: 1 1 auto;
}
.conteudo {
padding: 10px;
margin: 10px;
}
#sidebar {
position: fixed;
left: 0px;
top: 0px;
width: 200px;
height: 100%;
margin-left: 0px;
overflow-y: auto;
background: #063b55;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
padding-top: 180px;
}