-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
99 lines (86 loc) · 2 KB
/
styles.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
/* Не кэшировать стили */
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
#container {
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
}
#top,
#middle,
#comment {
flex: 1;
}
#top {
display: flex;
align-items: center;
justify-content: center;
background-color: lightblue;
}
#middle {
display: flex;
align-items: center;
justify-content: center;
background-color: lightblue;
/* background-color: lightgreen;*/
}
#comment {
display: flex;
align-items: center;
justify-content: center;
background-color: lightyellow;
}
#information-title {
text-align: center;
}
#description-container {
max-width: 850px !important;
}
#button1, #button2 {
width: 150px; /* Установите нужную ширину кнопок */
height: 50px; /* Установите нужную высоту кнопок */
border-radius: 25px; /* Установите половину высоты кнопок, чтобы получить овальную форму */
}
#languageSelect {
margin-left: 30px; /* Устанавливает отступ слева на 10px */
}
.tooltip {
font-size: 14px;
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 8px;
border-radius: 4px;
position: fixed;
z-index: 9999;
pointer-events: none;
transform: translate(-50%, -100%);
max-width: 250px;
}
.clicked {
background-color: lightblue;
}
/*Extentions baloon*/
.custom-tooltip {
display: none;
position: absolute;
padding: 8px;
border: 1px solid #d3d3d3;
z-index: 1000;
width: 200px;
top: 75px; /* Опускаем ниже */
font-size: 14px;
color: white;
background-color: rgba(0, 0, 0, 0.8);
}
#extensionSelect:hover + .custom-tooltip {
display: block;
}