tmavy rezim css
This commit is contained in:
parent
6a344c4d89
commit
2e14a257f6
65
Script_Speech_recognition/style_dark.css
Normal file
65
Script_Speech_recognition/style_dark.css
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
background-color: #121212;
|
||||||
|
color: #e0e0e0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
color: #8ab4f8;
|
||||||
|
font-size: 36px;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 45%;
|
||||||
|
height: 200px;
|
||||||
|
margin: 0 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #1e1e1e;
|
||||||
|
border: 2px solid #333;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: #e0e0e0;
|
||||||
|
font-size: 16px;
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #8ab4f8;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#startBtn {
|
||||||
|
display: block;
|
||||||
|
margin: 20px auto;
|
||||||
|
padding: 10px 20px;
|
||||||
|
font-size: 24px;
|
||||||
|
background-color: #8ab4f8;
|
||||||
|
color: #121212;
|
||||||
|
border: none;
|
||||||
|
border-radius: 50px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
#startBtn:hover {
|
||||||
|
background-color: #76a7f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#timerDisplay, #statusText {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #b0b0b0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#statusText {
|
||||||
|
color: #cf6679;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user