Files
PeerNotes/frontend/src/styles/RegisterFile.css

48 lines
933 B
CSS
Raw Normal View History

h1 {
color: white;
}
.container {
display: flex;
2024-04-22 12:52:59 -04:00
gap: 5rem;
justify-content: center;
}
.file-upload-card {
padding: 1em;
background-color: #B1D4E0;
border-radius: 5px;
}
.file-upload-card h1 {
color: black;
}
.file-card {
padding: 1em;
background-color: #2E8BC0;
border-radius: 5px;
display: flex;
flex-direction: row;
}
.submit-button {
padding: 8px 16px;
margin-top: 20px; /* Adds space above the button */
background-color: #2E8BC0; /* Example background color */
color: white; /* Text color */
border: none;
border-radius: 4px;
cursor: pointer;
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
th {
text-align: center;
padding: 1rem;
border: 1px solid #FFFFFF;
color: white;
}
td {
text-align: center;
border: 1px solid #FFFFFF;
background-color: #B1D4E0;
color: black;
2024-04-22 12:52:59 -04:00
}