forked from drkostas/drkostas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTitlebar.module.css
66 lines (57 loc) · 904 Bytes
/
Titlebar.module.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
.titlebar {
background: var(--titlebar-bg);
height: 30px;
padding: 0 0.5rem;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-family: 'Source Sans Pro', sans-serif;
font-size: 0.85rem;
border-bottom: 1px solid #191d20;
}
.items {
flex: 1;
display: flex;
margin-right: auto;
margin-left: 0.5rem;
}
.title {
flex: 1;
text-align: center;
}
.items > * {
padding: 0 0.5rem;
cursor: pointer;
}
.windowButtons {
flex: 1;
display: flex;
align-items: center;
margin-left: auto;
}
.windowButtons * {
margin-left: 0.5rem;
height: 13px;
width: 13px;
border-radius: 50%;
cursor: pointer;
}
.minimize {
background: #f1fa8c;
margin-left: auto;
}
.maximize {
background: #50fa7b;
}
.close {
background: #ff5555;
}
@media screen and (max-width: 900px) {
.items p {
display: none;
}
.title {
flex: 4;
}
}