This repository was archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathwindows.css
More file actions
89 lines (78 loc) · 1.25 KB
/
windows.css
File metadata and controls
89 lines (78 loc) · 1.25 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.window {
background: white;
border-radius: 5px;
position: fixed !important;
filter: drop-shadow(0 4px 4px rgba(0,0,0,0.16));
overflow: hidden;
font-family: Roboto;
}
.windowdark {
background: #202124;
box-shadow: 0 1px 6px 0 #171717;
filter: none;
}
.bar {
width: 100%;
height: 40px;
line-height: 40px;
background: #f8f8f8;
border-bottom: 1px solid #e3e3e3;
border-radius: 5px 5px 0 0;
display: flex;
user-select: none;
color: black;
}
.bardark {
background: #303134;
border-bottom: 1px solid #3c4043;
color: white;
}
.web {
border: none;
background: white;
width: 100%;
height: 100%;
}
.webdark {
background: #202124;
}
.html {
border: none;
background: white;
width: 100%;
height: 100%;
}
.htmldark {
background: #202124;
}
.appname {
text-align: left;
margin-left: 5px;
font-size: 18px;
}
.appclose {
margin-right: 5px;
cursor: pointer;
background: #fa6357;
border-radius: 100%;
height: 30px;
width: 30px;
margin-top: 5px;
text-align: center;
line-height: 30px;
color: white;
}
.appfull {
margin-left: auto;
margin-right: 5px;
cursor: pointer;
background: darkslategrey;
border-radius: 100%;
height: 30px;
width: 30px;
margin-top: 5px;
text-align: center;
line-height: 30px;
color: white;
}