Files
@ d903bd3d579e
Branch filter:
Location: SlatePermutate/styles/glider.css - annotation
d903bd3d579e
1.0 KiB
text/css
Add school profiles support. Currently, the only significant thing school profiles does is provide a different blog of HTML at the bottom of the input.php page so that users may receive school-specific instructions on how to use slate_permutate. School profiles _will_ be extended to provide autocompletion of sections for a specific course based on previously crawling a college's registration website. All-in-all, it maintains a simple school_id string which can be used by other components to uniquely identify a school for any arbitrary purpose.
d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 a20b78145ef5 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 bbc0c3b4c101 d882262f4f68 bbc0c3b4c101 bbc0c3b4c101 d882262f4f68 bbc0c3b4c101 bbc0c3b4c101 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 d882262f4f68 bbc0c3b4c101 d882262f4f68 d882262f4f68 d882262f4f68 a20b78145ef5 | div.scroller {
/* modify width and height of scrolling section if necessary */
width: 626px;
/* height: 300px;*/
overflow: hidden;
border:0;
padding:0;
margin:0;
}
div.scroller div.section {
/* modify width and height of each section as needed (should match the size of the scroller window) */
width:626px;
/* height:300px; */
overflow:hidden;
float:left;
padding:0;
}
div.scroller div.section div.txt {
padding: 1em;
}
div.scroller div.scontent {
width: 50000px;
}
.controls {
text-align: left;
margin-top: 10px;
margin-bottom: 2px;
}
.controls a{
-moz-border-radius-topright: 10px;
border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
border-top-left-radius: 10px;
text-decoration: none;
background: rgb(0,35,0); /* Fallback */
background: rgba(0,35,0,0.9);
padding: 2px;
}
.controls a:link{
color: rgba(255,255,255,1);
}
.controls a:visited{
color: rgba(255,255,255,1);
}
.controls a:hover{
background: rgba(255,255,255,1);
color: rgb(0,0,0);
}
.controls a:active{
color: rgba(200,200,200,1);
}
|