-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (77 loc) · 1.34 KB
/
Copy pathstyles.css
File metadata and controls
92 lines (77 loc) · 1.34 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
.device-section {
min-height: fit-content;
overflow: visible;
display: flex;
flex-direction: column;
padding-bottom: 30px;
background: #1a1a1a;
border-radius: 8px;
}
.device-info {
padding: 1rem;
margin-bottom: 1rem;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
}
.device-info h2 {
color: #fff;
margin-bottom: 0.5rem;
}
.device-info p {
color: #ccc;
margin-bottom: 1rem;
}
.device-info .links {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.device-info .links a {
color: #4fd1c5;
text-decoration: none;
}
.device-info .links a:hover {
text-decoration: underline;
}
.device-info h3 {
margin-bottom: 10px;
font-size: 1.2em;
color: #ffffff;
}
.device-info a {
color: #4a9eff;
text-decoration: none;
display: inline-block;
}
.device-info a:hover {
text-decoration: underline;
}
.project-info {
margin: 20px;
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
text-align: left;
}
.project-info h2 {
font-size: 1.4em;
color: #ffffff;
margin-bottom: 10px;
}
.project-info p {
color: #cccccc;
margin-bottom: 15px;
}
.project-info .links {
display: flex;
flex-direction: column;
gap: 10px;
}
.project-info .links a {
color: #4fd1c5;
text-decoration: none;
padding: 5px 0;
}
.project-info .links a:hover {
text-decoration: underline;
}