-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (92 loc) · 1.95 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-image: url('bg.jpg');
background-size: cover;
background-position: center;
overflow: hidden;
height: 100vh;
}
.icons {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 20px;
position: absolute;
left: 20px;
top: 20px;
color: white;
}
.icons img {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}
.icons img:hover {
transform: scale(1.1);
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.icons div {
font-size: 14px;
text-align: center;
margin-top: 5px;
color: #ffffff;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.taskbar {
background-color: rgba(243, 243, 243, 0.9);
width: 100%;
position: absolute;
bottom: 0;
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 20px;
z-index: 110;
box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.15);
transition: background-color 0.3s ease;
}
.taskbar.active {
background-color: rgba(220, 220, 220, 0.9);
}
.taskbar img {
height: 30px;
cursor: pointer;
}
.right {
height: 25px;
}
.startmenu {
position: absolute;
bottom: -655px;
width: 300px;
left: 50%;
transform: translateX(-50%);
background-color: rgba(255, 255, 255, 0.95);
border-radius: 12px;
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
transition: bottom 0.6s ease, opacity 0.6s ease;
opacity: 0;
z-index: 120;
}
.startmenu img {
width: 100%;
border-radius: 12px;
cursor: pointer;
}
.taskbar img:hover {
transform: scale(1.1);
transition: transform 0.2s ease-in-out;
}
.icons img:hover {
filter: brightness(1.2);
}
@media (max-width: 768px) {
.startmenu {
width: 90%;
}
}