study_practice_2025/style.css

113 lines
2.0 KiB
CSS

body {
margin: 0px;
padding: 0px;
font-family: 'Montserrat', sans-serif;
}
.topnav {
background-color: #EEEEEE;
overflow: hidden;
display: flex;
justify-content: space-between;
align-items: center;
}
.topnav img {
width: 300px;
border: none;
outline: none;
}
.topnav p {
font-size: 32px;
margin-right: 32px;
color: #5B5B5B;
}
.input {
display: inline-block;
margin-top: 32px;
border: #D9D9D9 solid;
border-radius: 16px;
border-width: 3px;
padding: 32px;
}
label {
display: block;
font-size: 16px;
color: #5B5B5B;
}
input {
color: #5B5B5B;
padding: 16px;
width: 240px;
border: #D9D9D9 solid;
border-width: 3px;
border-radius: 8px;
}
.time {
display: flex;
}
.start {
margin-right: 32px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
}
#submit {
margin-left: 32px;
margin-top: 18px;
width: 275px;
color: #FFFFFF;
border: #0165FF solid 3px;
background-color: #0165FF;
cursor: pointer;
}
#submit:hover {
color: #0165FF;
background-color: #FFFFFF;
border: #0165FF solid 3px;
}
.number-submit {
display: flex;
margin-top: 16px;
}
/* DOWNLOAD */
.data{
display: inline-block;
margin-top: 32px;
border: #D9D9D9 solid;
border-radius: 16px;
border-width: 3px;
width: 640px;
}
.download {
display: flex;
align-items: center;
justify-content: space-between;
padding: 32px;
}
hr {
border: none;
height: 3px;
background-color: #D9D9D9;
}
.download #submit{
margin-top: 0px;
}
.record {
display: flex;
border: #D9D9D9 solid;
border-radius: 16px;
border-width: 3px;
color: #5B5B5B;
justify-content: space-between;
align-items: center;
padding-left: 16px;
padding-right: 16px;
margin: 16px;
cursor: pointer;
}
.data img {
margin-left: 16px;
background-color: #0165FF;
border-radius: 4px;
}