-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (33 loc) · 795 Bytes
/
style.css
File metadata and controls
40 lines (33 loc) · 795 Bytes
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
body {
font-family: "Roboto", sans-serif;
}
.header {
background: linear-gradient(to right, #0062e6, #33aeff);
color: white;
padding: 100px 0;
}
.feature-card {
border: none;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.howto-steps {
list-style-type: decimal;
padding-left: 20px;
}
.howto-steps li {
margin-bottom: 10px;
font-size: 18px;
}
#monitoring-dashboard .card {
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#monitoring-dashboard .card:hover {
transform: translateY(-10px);
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}