Path: blob/master/src/packages/assets/misc/talk-20121004/ui/default/framing.css
1496 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45/*6* license7*/89/* The following styles size, place, and layer the slide components.10Edit these if you want to change the overall slide layout.11The commented lines can be uncommented (and modified, if necessary)12to help you with the rearrangement process.13target = 1024x768 */1415div#header,16div#footer,17.slide {18width: 100%;19top: 0;20left: 0;21}22div#header {23top: 0;24height: 100px;25z-index: 1;26}27div#footer {28top: auto;29bottom: 0;30height: 2.5em;31z-index: 5;32}33.slide {34top: 0;35width: 92%;36padding: 3.5em 4% 4%;37z-index: 2;38list-style: none;39}40div#controls {41left: 50%;42bottom: 0;43width: 50%;44z-index: 100;45}46div#controls form {47position: absolute;48bottom: 0;49right: 0;50width: 100%;51margin: 0;52}53#currentSlide {54position: absolute;55width: 10%;56left: 45%;57bottom: 1em;58z-index: 10;59}60html > body #currentSlide {61position: fixed;62}6364/*65div#header {background: #FCC;}66div#footer {background: #CCF;}67div#controls {background: #BBD;}68div#currentSlide {background: #FFC;}69*/707172