-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 1.05 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
body {
font-family: Arial, sans-serif;
}
#app {
position: relative;
}
.window {
position: absolute;
width: 300px;
height: 200px;
background-color: #f0f0f0; /*Текст окна*/
border: 1px solid #ccc; /*Грань окна*/
box-shadow: 2px 2px 12px rgba(112, 75, 75, 0.2); /*Подсветка окна*/
overflow: hidden;
}
.window-header {
background-color: #333; /*заголовка цвет*/
color: #fff; /*Цвет текста заголовка*/
padding: 5px;
cursor: move;
display: flex;
justify-content: space-between;
align-items: center;
}
.window-content {
padding: 10px;
height: calc(100% - 30px);
overflow-y: auto;
}
.window-minimized {
height: 30px;
}
.window-button-close {
background: none;
border: none;
color: rgb(231, 8, 8);
cursor: pointer;
}
.window-button-toggle {
background: none;
border: none;
color: rgb(216, 231, 8);
cursor: pointer;
}
.window-resizer {
width: 10px;
height: 10px;
background-color: #333;
position: absolute;
right: 0;
bottom: 0;
cursor: se-resize;
}