forked from TheRori/Apple3d
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (57 loc) · 1.17 KB
/
style.css
File metadata and controls
63 lines (57 loc) · 1.17 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
#desktop {
position: absolute;
background: repeating-linear-gradient(
45deg,
#d3d3d3,
#d3d3d3 10px,
#c0c0c0 10px,
#c0c0c0 20px
);
display: none;
flex-direction: column;
border: 2px solid #808080;
overflow: hidden; /* Assurez-vous que le contenu reste limité */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Effet visuel */
}
#menu-bar {
background: #c0c0c0;
color: black;
padding: 5px;
display: flex;
gap: 20px;
font-size: 14px;
border-bottom: 2px solid #808080;
}
.window {
position: absolute;
background: white;
border: 2px solid #808080;
width: 300px;
height: 200px;
box-shadow: 3px 3px 0 #c0c0c0, -1px -1px 0 #808080;
top: 100px;
left: 50px;
}
.window-title {
background: #c0c0c0;
padding: 5px;
font-weight: bold;
border-bottom: 1px solid #808080;
cursor: move;
}
.window-content {
padding: 10px;
}
.icon {
display: flex;
flex-direction: column;
align-items: center;
width: 50px;
text-align: center;
font-size: 12px;
}
.trash {
position: absolute;
bottom: 20px;
right: 20px;
}