-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
207 lines (177 loc) · 4.45 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
body {
background-color: #f0f0f0; /* Grigio molto chiaro */
margin: 0; /* Rimuove il margine predefinito del body */
}
header {
background-color: #333; /* Colore di sfondo della barra header */
color: #fff; /* Colore del testo */
padding: 0.25% 1%; /* Padding interno */
box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Ombra leggera */
display: flex; /* Utilizza il layout flessibile */
justify-content: space-between; /* Allinea gli elementi ai lati opposti */
align-items: center; /* Centra verticalmente */
}
header h1 {
margin-left: 1% /* Margine a sinistra per l'h1 */
}
.header-controls {
display: flex; /* Utilizza il layout flessibile per i controlli */
align-items: center; /* Centra verticalmente */
margin-right: 1%; /* Margine a destra per i controlli */
}
.header-controls div {
margin-right: 1%;
}
.header-button {
background-color: #4CAF50; /* Colore di sfondo del pulsante */
color: white; /* Colore del testo */
border: none; /* Nessun bordo */
padding: 10px 20px; /* Padding interno */
text-align: center; /* Allinea il testo al centro */
text-decoration: none; /* Nessun sottolineato */
display: inline-block; /* Mostra come blocco inline */
border-radius: 5px; /* Angoli arrotondati */
transition: background-color 0.3s ease; /* Transizione per il colore di sfondo */
cursor: pointer; /* Cambia il cursore al passaggio sopra il pulsante */
}
.header-button:hover {
background-color: #45a049; /* Cambia il colore di sfondo al passaggio del mouse */
}
.header-button:active {
transform: translateY(1px); /* Effetto di spinta verso il basso al click */
}
.container {
background-color: #fff;
height: 80vh; /* Altezza del 50% del viewport height */
border-radius: 15px; /* Angoli smussati */
margin: 2% 5% 1% 5%; /* top: 10px, right: 20px, bottom: 15px, left: 5px */
box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Ombra leggera */
overflow: auto;
overflow-x: scroll; /* abilita lo scrolling orizzontale */
white-space: nowrap; /* evita il wrapping del contenuto */
}
.container::-webkit-scrollbar {
width: 0; /*Nasconde la scrollbar su Chrome e Safari*/
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 3px;
}
.node {
stroke: #000;
stroke-width: 1.5px;
}
body {
background-color: #f0f0f0;
margin: 0;
}
header {
background-color: #333;
color: #fff;
padding: 0.25% 1%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin-left: 1%;
}
.header-controls {
display: flex;
align-items: center;
margin-right: 1%;
}
.header-controls div {
margin-right: 1%;
}
.header-button {
background-color: #4caf50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
transition: background-color 0.3s ease;
cursor: pointer;
}
.header-button:hover {
background-color: #45a049;
}
.header-button:active {
transform: translateY(1px);
}
.container {
background-color: #fff;
height: 80vh;
border-radius: 15px;
margin: 2% 5% 1% 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: auto;
overflow-x: scroll;
white-space: nowrap;
}
.container::-webkit-scrollbar {
width: 0;
}
/* Stile per il pulsante "Set Delay" */
#setDelayButton {
background-color: #008CBA; /* Blue */
border: none;
color: white;
padding: 0.5rem 1rem;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
transition-duration: 0.4s;
border-radius: 4px;
}
#setDelayButton:hover {
background-color: white;
color: black;
border: 2px solid #008CBA;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #2196F3;
}
input:checked + .slider:before {
transform: translateX(26px);
}