Commit 73722c47 by Muhammad Shoaib

Merge pull request #9375 from edx/muhhshoaib/PHX-118-timer-bar-scroll-out-view-css

PHX-118 added the css for the timer bar visibility when the page scrolls
parents 887a3af4 e8b399aa
...@@ -47,47 +47,57 @@ ...@@ -47,47 +47,57 @@
font-size: 90%; font-size: 90%;
} }
} }
.exam-timer { .proctored_exam_status {
line-height: 56px; // STATE: Fixed to viewport (used for scrolling)
background-color: #e5eaec; &.is-fixed {
@extend %ui-depth4;
box-shadow: 0 3px 3px $shadow-d1;
position: fixed;
top: 0;
width: 100%;
}
.exam-timer {
@include line-height(39);
background-color: rgb(229, 234, 236);
padding-left: 42px; padding-left: 42px;
padding-right: 32px; padding-right: 32px;
border-left: 4px solid #14a6ea; border-left: 4px solid $m-blue-l1;
margin: 0 auto; margin: 0 auto;
color: #4e575b; color: $gray-d2;
font-size: 14px; @include font-size(14);
a { a {
color: #0979ba; color: rgb(9, 121, 186);
} }
span.pull-right { span.pull-right {
color: #646161; color: $gray-d1;
line-height: 56px; @include line-height(39);
b { b {
color: #414040; color: $gray-d3;
} }
} }
&.low-time { &.low-time {
color: #cdd7db; color: $gray-l3;
background-color: #4F585C; background-color: rgb(79, 88, 92);
a { a {
color: #fff; color: $white;
text-decoration: underline; text-decoration: underline;
} }
span.pull-right { span.pull-right {
color: #cdd7db; color: $gray-l3;
b { b {
color: #fff; color: $white;
} }
} }
} }
&.warning { &.warning {
border-left-color: #feb93e; border-left-color: $warning-color;
} }
&.critical { &.critical {
border-left-color: #b30101; border-left-color: $alert-color;
color: #fff; color: $white;
} }
.exam-button-turn-in-exam { .exam-button-turn-in-exam {
margin-right: 20px; margin-right: $baseline;
}
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment