mirror of
https://github.com/sheptikhinv/timers.git
synced 2026-02-07 07:41:36 +05:00
initial commit
This commit is contained in:
commit
b120143726
23 changed files with 3710 additions and 0 deletions
63
src/pages/Timers/Timers.module.css
Normal file
63
src/pages/Timers/Timers.module.css
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
body, html {
|
||||
margin: 0;
|
||||
background-color: #341C63;
|
||||
color: #FFFFFF;
|
||||
font-family: 'Montserrat', serif;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 32px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.header_text {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.notes_text {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.timers_container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.notes_container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 32px;
|
||||
padding: 32px;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
.notes_container textarea {
|
||||
height: 100%;
|
||||
border: 1px dashed #000;
|
||||
resize: none;
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: flex;
|
||||
background-color: #FFF;
|
||||
border-radius: 32px;
|
||||
flex-direction: column;
|
||||
padding: 32px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
footer a {
|
||||
font-size: 24px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue