69 lines
1.0 KiB
SCSS
69 lines
1.0 KiB
SCSS
#course {
|
|
|
|
#docs {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: calc(30% - 1em);
|
|
height: 100%;
|
|
|
|
#upload_file {
|
|
height: 41.35px;
|
|
}
|
|
|
|
#doc_list {
|
|
background: $gray-400;
|
|
border-radius: 0.5em;
|
|
height: calc(100% - 41.35px);
|
|
width: 100%;
|
|
overflow: auto;
|
|
|
|
a.item {
|
|
display: block;
|
|
padding: 0.5em 1em;
|
|
width: 100%;
|
|
|
|
i.fal {
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
&:first-child {
|
|
padding-top: 1em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#notes_box {
|
|
position: absolute;
|
|
width: 70%;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
|
|
#notes_feedback {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 41.35px;
|
|
width: 50%;
|
|
text-align: right;
|
|
|
|
span {
|
|
position: absolute;
|
|
width: 100%;
|
|
display: inline-block;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
#notes {
|
|
width: 100%;
|
|
height: calc(100% - 43.35px);
|
|
background: $gray-400;
|
|
border-radius: 0.5em;
|
|
}
|
|
}
|
|
} |