-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
129 lines (118 loc) · 3.31 KB
/
Copy pathApp.css
File metadata and controls
129 lines (118 loc) · 3.31 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
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
120
121
122
123
124
125
126
127
128
129
.main {
background: linear-gradient(180deg, yellow, orange);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
z-index: 4;
}
.VovaEblan {
font-family: 'Courier New', Courier, monospace;
font-weight: 200;
font-size: 100px;
margin: 5px 5px 5px 5px;
color: rgb(226, 157, 9);
text-shadow:
0 0 1px rgb(240, 177, 6),
0 0 2px rgb(240, 177, 6),
0 0 5px rgb(240, 177, 6),
0 0 11px rgb(233, 236, 9),
0 0 20px rgb(233, 236, 9),
0 0 30px rgb(233, 236, 9),
0 0 55px black,
0 0 80px black;
}
.Graph{
display: block;
float: left;
width: 50%;
height: 50%;
padding: 5px;
border: solid 1px rgb(243, 227, 8);
border-radius: 1cm;
margin: 5px 55px 5px 5px;
box-shadow:
0 0 .1rem #fff,
0 0 .2rem #fff,
0 0 .3rem orange,
0 0 .8rem orange,
0 0 1rem orange,
inset 0 0 1.3rem orange;
}
.input{
display: flex;
margin: 55px 55px 55px 55px;
-webkit-appearance: none; /* Переопределение стилей CSS по умолчанию */
appearance: none;
width: 30%; /* Полная ширина */
height: 25px; /* Заданная высота */
background: #e4ac14; /* Серый фон */
outline: none; /* Удалить контур */
opacity: 0.6; /* Установите прозрачность (для эффектов наведения мыши при наведении курсора) */
-webkit-transition: .2s; /* 0.2 секундный переход при наведении курсора */
transition: opacity .2s;
border: solid 1px rgb(243, 227, 8);
border-radius: 1cm;
box-shadow:
0 0 .1rem #fff,
0 0 .2rem #fff,
0 0 .3rem orange,
0 0 .8rem orange,
0 0 1rem orange,
inset 0 0 1.3rem orange;
}
.input:hover {
opacity: 1; /* Полностью отображается при наведении курсора мыши */
}
.input::-webkit-slider-thumb {
-webkit-appearance: none; /* Переопределить внешний вид по умолчанию */
appearance: none;
width: 25px; /* Установите определенную ширину обработчика ползунка */
height: 25px; /* Высота обработчика ползунка */
background: #d8db07; /* Зеленый фон */
cursor: pointer; /* Курсор при наведении */
}
.input::-moz-range-thumb {
width: 25px; /* Установите определенную ширину обработчика ползунка */
height: 25px; /* Высота обработчика подзунка */
background: yellow; /* Зеленый фон */
cursor: pointer; /* Курсор при наведении */
}
.conv{
display: block;
float: left;
width: 50%;
height: 50%;
padding: 5px;
border: solid 1px rgb(243, 227, 8);
border-radius: 1cm;
margin: 5px 55px 5px 5px;
box-shadow:
0 0 .1rem #fff,
0 0 .2rem #fff,
0 0 .3rem orange,
0 0 .8rem orange,
0 0 1rem orange,
inset 0 0 1.3rem orange;
}
.canvas{
border: 1px solid black;
float: left;
display: block;
padding-left: 10cm;
margin-top: 40px;
}
@keyframes gradient {
0% {
background-position: 50% 0%;
}
50% {
background-position: 50% 100%;
}
100% {
background-position: 50% 0%;
}
}