-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
75 lines (69 loc) · 1.37 KB
/
styles.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
/* styles.css */
html {
font-size: 12px; /* Base font size for mobile devices */
}
@media (min-width: 768px) {
html {
font-size: 24px; /* Increase font size for tablet and desktop screens */
}
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f0f0f0;
background-image: url("3d-printer-wallpaper.jpg");
margin: 0;
padding: 0;
}
.container {
max-width: 90%;
margin: 0 auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0); /* Adjust the alpha (0.8) for transparency */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 0px;
margin-top: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 90vh;
}
h2 {
font-size: 1.3rem;
color: #333;
margin: 5px 0;
}
p {
font-size: 1rem;
color: #555;
margin: 5px 0;
}
th {
background-color: rgba(255,255,255,0.5);
}
.ready {
background-color: rgba(152,255,153,0.70);
}
.printing {
background-color: rgba(255,255,128,0.70);
}
.offline {
background-color: rgba(255,102,102,0.70);
}
.printer-info {
padding: 1px;
margin: 5px;
border: 0px solid #ccc;
}
.printer-info h2 {
margin: 0;
}
table, td{
font-size: 1.3rem;
border: 1px solid;
border-color: #e6e6e6;
}
.wrapper {
display: table-cell;
vertical-align: middle;
}