X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=2019-fosdem%2Fstyle.css;h=0f7be389813ea968cc941ef5879c80322608fe14;hb=3ddcd7084593ef8f3a36c84e27501e0c4040f209;hp=69f2571fc71b34a6eeab328d75b680d4287af1d3;hpb=7a7f24f393bffb37a32489f36a092e4ead5e0604;p=libguestfs-talks.git diff --git a/2019-fosdem/style.css b/2019-fosdem/style.css index 69f2571..0f7be38 100644 --- a/2019-fosdem/style.css +++ b/2019-fosdem/style.css @@ -7,6 +7,9 @@ body { font-size: 20pt; /* For 1024x768 */ /* font-family: liberation, helvetica; */ font-family: helvetica; + + /* Can be used to scale the whole document. */ + /*transform: translate(-10%,-10%) scale(0.75,0.75);*/ } body td, body th { /* why?? */ @@ -72,3 +75,89 @@ code { li { padding-bottom: 16px; } + +/* Plugins box. */ +div.plugins { + background: #f8f8ff; + border: 1px solid rgb(204,0,0); + border-radius: 15px; + width: 800px; + height: 400px; + /* Position relative is needed so that items may be + positioned inside. */ + position: relative; + column-count: 4; +} + +div.plugins p#caption { + position: absolute; + bottom: -5px; right: 5px; + color: rgb(204,0,0); + text-align: right; + font-size: 16px; + font-weight: bold; +} + +div.plugins ul { + list-style-type: none; + top: 50%; + transform: translateY(15%); + margin: 0; +} + +div.plugins ul li { + padding: 4px; + margin: 5px; +} + +div.plugins ul li.highlighted { + border: 1px solid rgb(204,0,0); + background: #fff; + padding-left: 10px; + color: rgb(204,0,0); + border-radius: 20px; + font-weight: bold; +} + +/* Filters box. */ +div.filters { + background: #f8fff8; + border: 1px solid rgb(204,0,0); + border-radius: 15px; + width: 800px; + height: 200px; + /* Position relative is needed so that items may be + positioned inside. */ + position: relative; + column-count: 4; +} + +div.filters p.filtercaption { + position: absolute; + bottom: -5px; right: 5px; + color: rgb(204,0,0); + text-align: right; + font-size: 16px; + font-weight: bold; +} + +div.filters ul { + list-style-type: none; + top: 50%; + transform: translateY(15%); + margin: 0; +} + +div.filters ul li { + padding: 4px; + margin: 5px; +} + +div.filters ul li.highlighted { + border: 1px solid rgb(204,0,0); + background: #fff; + padding-left: 10px; + color: rgb(204,0,0); + border-radius: 20px; + font-weight: bold; +}