mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-22 23:25:27 +01:00
55 lines
807 B
CSS
55 lines
807 B
CSS
.faculties > header {
|
|
width: 100%;
|
|
padding: 10px 0 10px 20px;
|
|
background-color: rgb(0,44,105);
|
|
color: #fff;
|
|
}
|
|
|
|
.faculties {
|
|
font-size: 17px;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
.faculty {
|
|
color: #094988;
|
|
}
|
|
.faculty:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.color-rejected {
|
|
color: #9b0000;
|
|
}
|
|
|
|
.add-field {
|
|
width: 100%;
|
|
padding: 30px 0;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.add-button {
|
|
border-radius: 0;
|
|
border: 0;
|
|
background-color: rgb(0,44,105);
|
|
color: #fff;
|
|
padding: 7px 20px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.add-button:hover {
|
|
color: #eee;
|
|
text-decoration: none;
|
|
background-color: rgb(5, 28, 60);
|
|
}
|
|
|
|
.btn-remove {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
border: 0;
|
|
}
|
|
|
|
.main-table {
|
|
border: 1px #ccc solid;
|
|
font-size: 13px;
|
|
}
|
|
|