76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
|
body, html {
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: #FEFFFF;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
border-radius: 8px;
|
||
|
}
|
||
|
.container{
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
background-color: #3AAFA9;
|
||
|
border: 1px solid #3AAFA9;
|
||
|
}
|
||
|
|
||
|
.logout-btn{
|
||
|
background-color: #454d55;
|
||
|
margin-top: 7.5%;
|
||
|
}
|
||
|
|
||
|
#top-info{
|
||
|
margin-top: 5%;
|
||
|
position: fixed;
|
||
|
top: 5%;
|
||
|
}
|
||
|
|
||
|
.anot{
|
||
|
border: 1px solid #000000;
|
||
|
border-radius: 10px;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.anot-text {
|
||
|
padding: 2.5%;
|
||
|
}
|
||
|
|
||
|
|
||
|
.form-control{
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
#login{
|
||
|
position: absolute;
|
||
|
top: -20vh;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, 50%);
|
||
|
border: 1px solid #000000;
|
||
|
border-radius: 8px;
|
||
|
padding: 4vh;
|
||
|
width: 500px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.top-info {
|
||
|
width: 100%;
|
||
|
border-collapse: collapse; /* Optional: collapse border */
|
||
|
}
|
||
|
|
||
|
.top-info td {
|
||
|
border: 1px solid #000; /* Add border to table cells */
|
||
|
padding: 8px; /* Optional: Add padding */
|
||
|
}
|
||
|
|
||
|
h3{
|
||
|
margin-bottom: 3%;
|
||
|
}
|