Add basic styles for timetable
This commit is contained in:
parent
c8c7d4b35d
commit
f3ac6e4b7e
2 changed files with 40 additions and 0 deletions
39
public/stylesheets/_timetable-table.scss
Normal file
39
public/stylesheets/_timetable-table.scss
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
.presentData {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
thead th {
|
||||||
|
background: #d32f2f;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 1rem;
|
||||||
|
border: 1px solid #444444;
|
||||||
|
width: 20%;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: smaller;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-treelabel-ppl {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-treelabel-rlz {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-treelabel-inv {
|
||||||
|
font-style: italic;
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-treelabel-zas {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
@import "scaffolding";
|
@import "scaffolding";
|
||||||
@import "grades-table";
|
@import "grades-table";
|
||||||
|
@import "timetable-table";
|
||||||
@import "filters";
|
@import "filters";
|
||||||
@import "header";
|
@import "header";
|
||||||
@import "nav";
|
@import "nav";
|
||||||
|
|
Loading…
Reference in a new issue