-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
119 lines (102 loc) · 2.04 KB
/
index.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
body {
/* The image used */
background-image: url("xp.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
/*background-position: center;*/
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
/* Hide scrollbars */
}
.window {
top: 0;
left: 0;
width: inherit;
height: inherit;
background-color: white;
position: absolute;
box-shadow: 1px 1px lightgray;
}
.start {
width: fit-content;
background-repeat: no-repeat;
height: inherit;
float: left;
}
.windowPanel {
float: left;
}
.rightPanel {
width: 150px;
background-color: rgb(95, 196, 243);
float: right;
height: inherit;
border: 0.5px solid white;
}
.icons {
height: inherit;
float: left;
}
.time {
color: white;
float: left;
font-family: 'Times New Roman', Times, serif;
}
.desktop {
height: 1000px;
width: 100%;
}
.taskbar {
position: fixed;
height: 30px;
bottom: 0;
width: 100%;
left: 0;
background-color: rgb(10, 115, 252);
border: 0.5px solid white;
box-shadow: 0px 0px 0px 1px white;
}
.windowTile {
height: 30px;
width: 100px;
margin-left: 2px;
border: 0.5px solid lightgoldenrodyellow;
border-radius: 5px;
font-size: inherit;
color: white;
cursor: pointer;
}
.dropdown,
.subDropDown {
background-color: white;
box-shadow: 1px;
width: 150px;
height: fit-content;
box-shadow: 2px 2px gray;
padding: 10px;
font-family: auto;
font-size: smaller;
}
.dropdown :hover,
.subDropDown :hover {
background-color: lightgray;
cursor: pointer;
}
.subDropDown {
width: fit-content;
height: fit-content;
}
.startmenu {
background-color: rgb(10, 115, 252);
width: 368px;
height: 470px;
left: 0px;
bottom: 30px;
box-shadow: 2px 2px white;
}
.desktopIconBar {
width: 10%;
height: inherit;
}