145 lines
2.4 KiB
CSS
Raw Normal View History

2017-01-15 23:59:10 -05:00
#profPageWrapper {
width: 100%;
height: 100%;
2017-01-16 00:14:55 -05:00
background-color: #282933;
2017-01-17 00:18:26 -05:00
color: #FCF0F0 !important;
2017-01-15 23:59:10 -05:00
position: absolute;
top: 0;
left: 0;
2017-01-17 00:18:26 -05:00
user-select: none;
}
#profPageWrapper input {
color: #FCF0F0 !important;
}
#profPageWrapper .optionText {
background-color: #282933 !important;
}
#profPageWrapper #classSearch {
background-color: rgba(0,0,0,0.1);
border: 0;
-webkit-transition: background-color 0.5s ease;
-moz-transition: background-color 0.5s ease;
-ms-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
#profPageWrapper #classSearch:hover {
background-color: rgba(0,0,0,0.2);
}
#profPageWrapper .classBox:not(:first-child) {
border: 1px solid #FCF0F0 !important;
2017-01-15 23:59:10 -05:00
}
#basicInfo {
2017-01-17 00:18:26 -05:00
width: 100%;
position: absolute;
top: 20%;
2017-01-15 23:59:10 -05:00
}
#newUserWrapper {
width: 25%;
2017-01-16 00:14:55 -05:00
padding: 2.5%;
2017-01-15 23:59:10 -05:00
margin: auto;
2017-01-16 00:14:55 -05:00
background-color: rgba(255,255,255,0.2);
2017-01-15 23:59:10 -05:00
}
#newUserWrapper .formDiv {
width: 100%;
margin: 0;
padding: 0;
2017-01-16 00:14:55 -05:00
background-color: transparent;
2017-01-15 23:59:10 -05:00
}
.opTitle {
font-weight: 200;
margin: 0;
}
#newUserWrapper .optionHolder {
width: 100% !important;
}
#basicNext {
padding: 2%;
2017-01-17 00:18:26 -05:00
border: 1px solid #FCF0F0;
2017-01-15 23:59:10 -05:00
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
2017-01-17 00:18:26 -05:00
2017-01-15 23:59:10 -05:00
cursor: pointer;
text-align: center;
-webkit-transition: background-color 0.5s ease;
-moz-transition: background-color 0.5s ease;
-ms-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
#basicNext:hover {
background-color: rgba(0,0,0,0.1);
}
2017-01-17 00:18:26 -05:00
#backArrow {
margin: auto;
z-index: 10;
cursor: pointer;
opacity: 0;
position: relative;
top: 5%;
-webkit-transition: background-color 0.5s ease;
-moz-transition: background-color 0.5s ease;
-ms-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
#backArrow i {
line-height: 5vh;
}
#backArrow:hover {
background-color: rgba(255,255,255,0.05);
}
#forwardArrow {
margin: auto;
z-index: 10;
cursor: pointer;
opacity: 0;
position: relative;
top: 85%;
-webkit-transition: background-color 0.5s ease;
-moz-transition: background-color 0.5s ease;
-ms-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
#forwardArrow:hover {
background-color: rgba(255,255,255,0.05);
}
#enrollInfo {
width: 100%;
position: absolute;
top: 150%;
}
#enrollUserWrapper {
width: 60%;
margin: auto;
padding: 1%;
background-color: rgba(255,255,255,0.2);
}