62 lines
1.0 KiB
CSS
62 lines
1.0 KiB
CSS
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f5f5f5;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
color: #4285f4;
|
||
|
font-size: 36px;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
width: 45%;
|
||
|
height: 200px;
|
||
|
margin: 0 10px;
|
||
|
padding: 10px;
|
||
|
border: 2px solid #ccc;
|
||
|
border-radius: 4px;
|
||
|
font-size: 16px;
|
||
|
resize: none;
|
||
|
}
|
||
|
|
||
|
textarea:focus {
|
||
|
border-color: #4285f4;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
#startBtn {
|
||
|
display: block;
|
||
|
margin: 20px auto;
|
||
|
padding: 10px 20px;
|
||
|
font-size: 24px;
|
||
|
background-color: #4285f4;
|
||
|
color: white;
|
||
|
border: none;
|
||
|
border-radius: 50px;
|
||
|
cursor: pointer;
|
||
|
transition: background-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
#startBtn:hover {
|
||
|
background-color: #357ae8;
|
||
|
}
|
||
|
|
||
|
#timerDisplay, #statusText {
|
||
|
text-align: center;
|
||
|
font-size: 18px;
|
||
|
color: #555;
|
||
|
}
|
||
|
|
||
|
#statusText {
|
||
|
color: #f44336;
|
||
|
}
|