Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove 2em margin for our space | @media (max-width: 767px) {
/* On small screens, the nav menu spans the full width of the screen. Leave a space for it. */
.body-content {
padding-top: 50px;
}
}
.body-content {
margin: 2em;
padding-left: 15px;
padding-right: 15px;
}
.table > tbody > tr > td {
vertical-align: midd... | @media (max-width: 767px) {
/* On small screens, the nav menu spans the full width of the screen. Leave a space for it. */
.body-content {
padding-top: 50px;
}
}
.table > tbody > tr > td {
vertical-align: middle;
} |
Update styles for main box | .fileBrowser {
height: 500px;
width: 100%;
}
.fb-breadcrumbs {
background-color: #efefef;
padding: 10px;
}
.fb-sidebar {
width: 25%;
display: block;
height: 500px;
float: left;
background-color: aliceblue;
}
.fb-main {
width: 55%;
float: left;
background-color: antique... | .fileBrowser {
height: 500px;
width: 100%;
}
.fb-breadcrumbs {
background-color: #efefef;
padding: 10px;
}
.fb-sidebar {
width: 25%;
display: block;
height: 500px;
float: left;
background-color: aliceblue;
}
.fb-main {
width: 55%;
float: left;
padding: 0;
}
.fb-infoba... |
Add body selector and new font family | /* ==========================================================================
Author's custom styles
========================================================================== */
.biopic {
width: 100px;
border-radius: 50%;
}
| /* ==========================================================================
Author's custom styles
========================================================================== */
.biopic {
width: 100px;
}
body {
font-family: "Bangers", sans-serif;
}
|
Add an arrow above the dropdown content pointing to the icon | .content {
background: #fff;
border-radius: 5px;
border: 1px solid #ccc;
box-shadow: 0 4px 2px #eee;
margin-top: -5px;
position: absolute;
width: 220px;
padding: 5px 0;
}
.content h2 {
margin: 0;
font-size: 1.2rem;
}
.dropdownList > li > a {
display: flex;
flex-direction: row;
align-items: c... | .content {
background: #fff;
border-radius: 5px;
border: 1px solid #ccc;
box-shadow: 0 4px 2px #eee;
position: absolute;
width: 220px;
padding: 5px 0;
}
.content::before,
.content::after {
position: absolute;
content: '';
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: ... |
Add styling to center race track. Thicken border | #racetrack {
border: 1px solid black;
height: 150px;
background-image: url("../img/nyanBackground.jpg");
background-size: 100%;
/*background-repeat: no-repeat;*/
}
.player {
height: 50px;
width: 50px;
/* background-color: blue;*/
background-repeat: no-repeat;
background-size: 100%;
/*border: 1px s... | #racetrack {
border: 2px solid black;
height: 150px;
background-image: url("../img/nyanBackground.jpg");
background-size: 100%;
/*background-repeat: no-repeat;*/
}
/* foundation-compliant css to align the div vertically. found on */
.valign-middle {
display: table;
> .columns {
display: ta... |
Add top/bottom margins to messages - less squished | .message_list {
overflow-y: scroll;
max-height: 50%;
white-space: pre-wrap;
line-height: 0.9em;
}
.chat-input {
width: 90%;
}
/* I have no idea if this is the best way to handle the issues with float:left in navbars, or if 30px is a good value */
.tabset {
min-height: 30px;
}
ul.tab-list {
list-style: none;
}... | .message_list {
overflow-y: scroll;
max-height: 50%;
white-space: pre-wrap;
line-height: 0.9em;
}
.message_list li {
margin: 0.5em 0;
}
.chat-input {
width: 90%;
}
/* I have no idea if this is the best way to handle the issues with float:left in navbars, or if 30px is a good value */
.tabset {
min-height: 30p... |
Make border around code snippets grey | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style... | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style... |
Change the title's background color to gold. | table.sortable thead {
font-weight: bold;
cursor: default;
}
body {
font-size: 0.75em;
background-color: #edb;
border-top: none;
}
td, th, table {
font-family:Arial,sans-serif;
border: 1px solid #888;
}
a {
color: #c1b89b;
text-decoration: underline;
xtext-decora... | table.sortable thead {
font-weight: bold;
cursor: default;
}
body {
font-size: 0.75em;
background-color: #edb;
background-color: white;
border-top: none;
}
td, th, table {
font-family:Arial,sans-serif;
border: 1px solid #888;
}
a {
color: #c1b89b;
text-decoration... |
Use small triangles for sorting indicators | .encoding-placeholder-big {
text-decoration:underline;
font-style:italic;
}
.encoding-settings {
width: 500px;
}
table .sorted::after {
content:" ▼";
}
table .reverse-sorted::after {
content:" ▲";
} | .encoding-placeholder-big {
text-decoration:underline;
font-style:italic;
}
.encoding-settings {
width: 500px;
}
table .sorted::after {
content:" ▾";
}
table .reverse-sorted::after {
content:" ▴";
} |
Fix using variables in CSS | $borderStyle: 1px solid rgb(232,232,232);
$mainPad: 20px;
.App {
display: flex;
flex-direction: column;
height: 100vh;
}
.App__topbar {
height: 40px;
flex: 0 0 auto;
border-bottom: $borderStyle;
padding: 0 $mainPad;
}
.App__content {
flex-grow: 1;
display: flex;
}
.App__sidebar {
... | :root {
--borderStyle: 1px solid rgb(232,232,232);
--mainPad: 20px;
}
.App {
display: flex;
flex-direction: column;
height: 100vh;
}
.App__topbar {
height: 40px;
flex: 0 0 auto;
border-bottom: var(--borderStyle);
padding: 0 var(--mainPad);
}
.App__content {
flex-grow: 1;
d... |
Add a bit of a background. | body {
margin: 0;
}
#content canvas {
position: absolute;
left: 0;
top: 0;
}
#content {
align-items: center;
display: flex;
justify-content: center;
height: 100vh;
width: 100vw;
}
img {
height: 85vh;
width: 85vh;
z-index: 1;
}
| body {
margin: 0;
}
#content canvas {
position: absolute;
left: 0;
top: 0;
}
#content {
align-items: center;
background: linear-gradient(#93e7ff6b,#4b7dff7a);
display: flex;
justify-content: center;
height: 100vh;
width: 100vw;
}
img {
height: 85vh;
width: 85vh;
z-index: 1;
}
|
Change styling for code editor @ scenarios set up page. | .scenarios-wrapper {
flex-wrap: wrap;
align-items: center;
}
/* NOTE: Configuring buttons */
.scenarios-buttons {
position: relative;
top: 10px;
height: 5%;
background: white;
align-items: center; /* For vertical alignment */
display: flex;
}
.scenarios-open-btn, .scenarios-save... |
.scenarios-wrapper {
flex-wrap: wrap;
align-items: center;
}
/* NOTE: Configuring buttons */
.scenarios-buttons {
position: relative;
top: 10px;
height: 5%;
background: white;
align-items: center; /* For vertical alignment */
display: flex;
}
.scenarios-open-btn, .scenarios-save-btn... |
Fix background image on mobile | /*!
* Start Bootstrap - Full HTML Template (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
body {
margin-top: 50px; /* Required margin for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navi... | /*!
* Start Bootstrap - Full HTML Template (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
body {
margin-top: 50px; /* Required margin for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navi... |
Update font-size for portrait screens | body {
height: 100vh;
display: flex;
flex-flow: row wrap;
text-align: center;
align-content: center;
font-family: 'Montserrat', sans-serif;
}
body > * {
flex: 1 100%;
}
.message {
margin-bottom: 1em;
color: #6C7A89;
font-size: x-large;
}
a {
color: #6C7A89;
text-decoration: none;
}
p {
mar... | body {
height: 100vh;
display: flex;
flex-flow: row wrap;
text-align: center;
align-content: center;
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
}
@media (orientation: portrait) {
body {
font-size: 3rem;
}
}
body > * {
flex: 1 100%;
}
.message {
margin-bottom: 1em;
color: #6... |
Add custom style for add ons when using the fiware theme | .add-on {
display: inline-block;
width: auto;
height: 20px;
min-width: 16px;
padding: 3px 5px 2px;
font-size: 14px;
font-weight: normal;
line-height: 20px;
text-align: center;
text-shadow: 0 1px 0 #ffffff;
background-color: #eeeeee;
border: 1px solid #ccc;
vertical-al... | |
Fix an issue where the connector line was not themeable | @import 'part:@sanity/base/theme/variables-style';
.svg {
z-index: calc(var(--zindex-portal) - 1);
pointer-events: none;
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
}
.connector {
stroke: #2276fc;
stroke-width: 2;
pointer-events: all;
cursor: pointer;
}
.dangerConnector {
c... | @import 'part:@sanity/base/theme/variables-style';
.svg {
z-index: calc(var(--zindex-portal) - 1);
pointer-events: none;
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
}
.connector {
stroke: var(--brand-primary);
stroke-width: 2;
pointer-events: all;
cursor: pointer;
}
.dangerCo... |
Add new line at end of file | :root {
--passed: #4fdc7f;
--failed: #DC4F4F;
}
.build-snapshot {
color: var(--primary);
border-radius: 1rem;
flex: 1;
font-size: 1rem;
}
.passed {
background-color: var(--passed);
}
.failed {
background-color: var(--failed);
}
.header-toggle {
height: 1.5rem;
width: 1.5rem;
}
.snapshot-header ... | :root {
--passed: #4fdc7f;
--failed: #DC4F4F;
}
.build-snapshot {
color: var(--primary);
border-radius: 1rem;
flex: 1;
font-size: 1rem;
}
.passed {
background-color: var(--passed);
}
.failed {
background-color: var(--failed);
}
.header-toggle {
height: 1.5rem;
width: 1.5rem;
}
.snapshot-header ... |
Add some space on title bar | @import "mdc-theme.global.css";
@import "../../node_modules/@material/button/dist/mdc.button.css";
@import "../../node_modules/@material/ripple/dist/mdc.ripple.css";
@import "../../node_modules/@material/textfield/dist/mdc.textfield.css";
@import "../../node_modules/@material/menu/dist/mdc.menu.css";
@import "../../nod... | @import "mdc-theme.global.css";
@import "../../node_modules/@material/button/dist/mdc.button.css";
@import "../../node_modules/@material/ripple/dist/mdc.ripple.css";
@import "../../node_modules/@material/textfield/dist/mdc.textfield.css";
@import "../../node_modules/@material/menu/dist/mdc.menu.css";
@import "../../nod... |
Make rich markers more beautiful | .infoWindow table {
font-family: verdana, sans-serif;
font-size: 7pt;
}
.infoWindow th {
text-align: right;
}
.richMarker {
border-style: none;
color: black;
font-family: verdana, sans-serif;
font-weight: bold;
font-size: 7pt;
padding: 0px;
}
| .infoWindow table {
font-family: verdana, sans-serif;
font-size: 7pt;
}
.infoWindow th {
text-align: right;
}
.richMarker {
border-radius: 3px;
border-style: solid;
border-width: 0;
color: black;
font-family: verdana, sans-serif;
font-size: 7pt;
height: 10px;
margin: 0px;
padding: 0px 2px;
}
|
Fix display material design icons on chrome | @font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url('../fonts/MaterialIcons-Regular.woff2') format('woff2'),
url('../fonts/MaterialIcons-Regular.woff') format('woff');
}
.material-icons {
font... | @font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
url(../fonts/... |
Fix display height of payment boxes | input[type="radio"][name="payment"] {
display:none;
}
input[type="radio"][name="payment"]:checked + label i {
color: #C02942;
}
input[type="radio"][name="payment"]:checked + label div.feature-box {
border-bottom-color: black;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
input[id="... | input[type="radio"][name="payment"] {
display:none;
}
input[type="radio"][name="payment"]:checked + label i {
color: #C02942;
}
input[type="radio"][name="payment"]:checked + label div.feature-box {
border-bottom-color: black;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
}
input[id="... |
Add a centered titlepage style for markdown-themeable-pdf | html, body {
tab-size: 4;
}
p {
text-align: justify;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
padding: 4px 8px;
}
img + em {
display: block;
}
| html, body {
tab-size: 4;
}
p {
text-align: justify;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
padding: 4px 8px;
}
img + em {
display: block;
}
.titlepage-center + h1,
.titlepage-center + h1 + h2 {
... |
Remove the gray-ness of the jumbrotron. | #main {
position: absolute;
height: auto;
width: 100%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
#main .jumbotron {
margin: 0 auto;
max-width: 600px;
text-align:... | #main {
position: absolute;
height: auto;
width: 100%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
#main .jumbotron {
margin: 0 auto;
max-width: 600px;
background-... |
Update CSS for New Blogs | body {
background-color: #FA58AC;
margin: 1em 1em 1em 1em;
padding: 0 1em 0 1em;
}
.center {
text-align: center;
}
h1 {
border:10px solid #D0FA58;
padding: 0 1em 0 1em;
background-color: #81F7BE;
}
h2 {
text-decoration: underline;
}
h4 {
text-decoration: underline;
}
p {
padding-top: 1em;
padding-... | body {
background-color: #FA58AC;
margin: 1em 1em 1em 1em;
padding: 0 1em 0 1em;
}
.center {
text-align: center;
}
#border {
display: inline-block;
border: 9px solid black;
float: left
}
h1 {
border:10px solid #D0FA58;
padding: 0 1em 0 1em;
background-color: #81F7BE;
}
h2 {
text-decoration: underl... |
Add 'overflow: hidden' to autofill items so we don't occlude the close button. | .autofill-list-item {
-webkit-box-flex: 1;
-webkit-padding-start: 8px;
}
.autofill-list-item + img {
-webkit-padding-end: 20px;
vertical-align: middle;
}
#autofill-options > div:last-child {
margin-top: 15px;
}
#autofill-options > div.settings-list > div:last-child {
border-top: 1px solid #D9D9D9;
padd... | .autofill-list-item {
-webkit-box-flex: 1;
-webkit-padding-start: 8px;
overflow: hidden;
text-overflow: ellipsis;
}
.autofill-list-item + img {
-webkit-padding-end: 20px;
vertical-align: middle;
}
#autofill-options > div:last-child {
margin-top: 15px;
}
#autofill-options > div.settings-list > div:last-... |
Adjust location of "Behavior" string in content settings exception table. | /*
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.exception-pattern {
-webkit-box-flex: 1;
-webkit-margin-end: 10px;
-webkit-margin-start: 14px;
}
.exception-setting {
-webkit-margin-end: 20px;... | /*
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.exception-pattern {
-webkit-box-flex: 1;
-webkit-margin-end: 10px;
-webkit-margin-start: 14px;
}
.exception-setting {
-webkit-margin-end: 20px;... |
Use exact video size in HTML. | body
{ margin: 0; }
#player, #log-container
{ float: left;
width: 800px;
height: 500px; }
#log-container
{ font: 14px monospace;
color: white;
background: #333;
overflow: auto; }
#log
{ list-style-type: none;
margin: 0;
padding: 1ex 1em; }
#log li
{ margin: .5ex 0;
word-wrap: break-word; }
#log li.first... | body
{ margin: 0; }
#player, #log-container
{ float: left;
width: 800px;
height: 450px; }
#log-container
{ font: 14px monospace;
color: white;
background: #333;
overflow: auto; }
#log
{ list-style-type: none;
margin: 0;
padding: 1ex 1em; }
#log li
{ margin: .5ex 0;
word-wrap: break-word; }
#log li.first... |
Fix Minefield rendering on FF48 | .game-table {
background: #fff;
position: relative;
display: block;
opacity: 0;
}
.game-row {
display: flex;
}
.game-cell {
display: block;
width: 20px;
height: 20px;
padding: 0;
overflow: hidden;
flex-shrink: 0;
}
.button {
width: 20px;
height: 20px;
appearance: none;
-webkit-appearanc... | .game-table {
background: #fff;
position: relative;
display: block;
opacity: 0;
}
.game-row {
display: flex;
}
.game-cell {
display: block;
width: 20px;
height: 20px;
padding: 0;
overflow: hidden;
flex-shrink: 0;
}
.button {
width: 20px;
height: 20px;
appearance: none;
-webkit-appearanc... |
Fix table header background color in pdf view | .print-heading {
text-align: right;
text-transform: uppercase;
font-color: #888;
font-weight: bold;
padding-bottom: 7px;
margin-bottom: 15px;
border-bottom: 3px solid #aaa;
}
.print-format table.table-bordered {
border-top: 3px solid #aaa;
}
.print-format th {
background-color: #eee;
}
| .print-heading {
text-align: right;
text-transform: uppercase;
font-color: #888;
font-weight: bold;
padding-bottom: 7px;
margin-bottom: 15px;
border-bottom: 3px solid #aaa;
}
.print-format table.table-bordered {
border-top: 3px solid #aaa;
}
.print-format th {
background-color: #eee !important;
}
|
Fix wrapping issue on Chrome. | a.download {
color: #CCC;
float: right;
display: inline;
margin-top: 8px;
margin-right: 6px;
}
a.download:visited {
color: #CCC;
}
a.download:hover {
color: #EEE;
}
a.date {
color: #CCC;
}
a.date:visited {
color: #CCC;
}
a.date.highlighted {
color: yellow;
}
a.date.highlighted:vi... | a.download {
color: #CCC;
float: right;
display: inline;
margin-top: 8px;
margin-right: 6px;
}
a.download:visited {
color: #CCC;
}
a.download:hover {
color: #EEE;
}
a.date {
color: #CCC;
white-space: nowrap;
}
a.date:visited {
color: #CCC;
}
a.date.highlighted {
color: yellow... |
Fix border radius on ParameterListGroup for consistency | @import "variables.css";
.container {
background: var(--color-concrete);
padding: 1rem 0 1rem 0;
border-radius: 10px;
overflow: hidden;
}
.title {
font-weight: 400;
}
.no-content {
color: var(--color-very-light-gray);
margin: 0;
padding: 0.67rem 2rem;
}
| @import "variables.css";
.container {
background: var(--color-concrete);
padding: 1rem 0 1rem 0;
border-radius: var(--border-radius);
overflow: hidden;
}
.title {
font-weight: 400;
}
.no-content {
color: var(--color-very-light-gray);
margin: 0;
padding: 0.67rem 2rem;
}
|
Remove underline from math hover in table of contents | .katex-error { color: #cc0000; border: #cc0000 thin solid; }
/*
a:hover .katex .base, a:focus .katex .base { text-decoration: underline; }
*/
a:hover .katex-html, a:focus .katex-html { border-bottom: solid .07em; margin-bottom: -.07em; }
| .katex-error { color: #cc0000; border: #cc0000 thin solid; }
/*
a:hover .katex .base, a:focus .katex .base { text-decoration: underline; }
*/
.message a:hover .katex-html, a:focus .katex-html { border-bottom: solid .07em; margin-bottom: -.07em; }
|
Set info text to the right and filter box to the left | body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
.sidebar_link {
-moz-border-radius: 6px;
border-radius: 6px;
}
.sidebar_link .badge {
padding: 0px 7px;
}
.brand img {
margin: -10px 12px;
}
.badge {
float: right;
}
.node_name, .node_ip,
.node_env {
... | body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
.sidebar_link {
-moz-border-radius: 6px;
border-radius: 6px;
}
.sidebar_link .badge {
padding: 0px 7px;
}
.brand img {
margin: -10px 12px;
}
.badge {
float: right;
}
.node_name, .node_ip,
.node_env {
... |
Fix style of manuscript title. | .sc-manuscript {
max-width: 760px;
padding: 30px;
}
.sc-manuscript-view.sm-compact .sc-manuscript {
margin: 0 auto;
}
.sc-manuscript .sc-text-model-editor.sm-title {
line-height: 1.3em;
font-size: var(--title-font-size);
font-family: 'Avenir Next', 'Lato', Helvetica;
font-weight: 600;
}
| .sc-manuscript {
max-width: 760px;
padding: 30px;
}
.sc-manuscript-view.sm-compact .sc-manuscript {
margin: 0 auto;
}
.sc-manuscript .sc-text.sm-title {
line-height: 1.3em;
font-size: var(--title-font-size);
font-family: 'Avenir Next', 'Lato', Helvetica;
font-weight: 600;
}
|
Add shadow to intro text | body, html {
height: 100%;
overflow-x: hidden;
margin: 0%;
}
.bg {
background-image: url(../../annie-spratt-330560.jpg);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.intro {
color: white;
top: 70px;
}
.about-photo {
height: 40%;
}
.contact... | body, html {
height: 100%;
overflow-x: hidden;
margin: 0%;
}
.bg {
background-image: url(../../annie-spratt-330560.jpg);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.intro {
color: white;
top: 70px;
text-shadow: 2px 2px 2px grey;
}
.about-p... |
Fix button width to 110px | .btn-lg{
margin-left: 20px;
}
#accounts{
margin-top: 25px;
}
.account{
height: 100px;
margin-right: 35px;
}
.account .name{
margin-top: 10px;
font-size: 20px;
}
.account .credit{
font-size: 30px;
}
.detail{
margin-top: 25px;
}
.detail .name{
margin-top: 25px;
font-size: 40px;
}
.detail .credit{
margin... | .btn-lg{
width: 110px;
margin-left: 20px;
}
#accounts{
margin-top: 25px;
}
.account{
height: 100px;
margin-right: 35px;
}
.account .name{
margin-top: 10px;
font-size: 20px;
}
.account .credit{
font-size: 30px;
}
.detail{
margin-top: 25px;
}
.detail .name{
margin-top: 25px;
font-size: 40px;
}
.detail .... |
Hide `explanations` sidebar section name in content | /*
* Copyright (c) 2022. The Pycroft Authors. See the AUTHORS file.
* This file is part of the Pycroft project and licensed under the terms of
* the Apache License, Version 2.0. See the LICENSE file for details
*/
/* sidebar adjustments */
.sidebar-toc p.caption {
padding: 0px 5px;
}
.sidebar-toc ul li a {
... | /*
* Copyright (c) 2022. The Pycroft Authors. See the AUTHORS file.
* This file is part of the Pycroft project and licensed under the terms of
* the Apache License, Version 2.0. See the LICENSE file for details
*/
/* sidebar adjustments */
.sidebar-toc p.caption {
padding: 0px 5px;
}
.sidebar-toc ul li a {
... |
Increase top padding for code buttons | /**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* "Copy" code block button */
pre {
position: relative;
}
pre .btnIcon {
position: absolute;
top: 4px;
z-index: 2;
cursor: p... | /**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* "Copy" code block button */
pre {
position: relative;
}
.hljs {
padding: 2rem 1.5rem;
}
pre .btnIcon {
position: absolute;
... |
Fix infobar reftest for label background changes | @import "reset-to-defaults.css";
.info {
/* FIXME: for now label does not support background */
/* background-color: @info_bg_color;*/
color: @info_fg_color;
}
.warning {
/* background-color: @warning_bg_color;*/
color: @warning_fg_color;
}
.question {
/* background-color: @question_bg_color;*/
color: @questio... | @import "reset-to-defaults.css";
.info {
background-color: @info_bg_color;
color: @info_fg_color;
}
.warning {
background-color: @warning_bg_color;
color: @warning_fg_color;
}
.question {
background-color: @question_bg_color;
color: @question_fg_color;
}
.error {
background-color: @error_bg_color;
c... |
Use rucksack into button component | .ui-button-container {
width: 100%;
height: 800px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.ui-button:focus {
outline: none !important;
}
| .ui-button-container {
width: 100%;
height: 800px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.ui-button {
font-size: responsive;
}
.ui-button:focus {
outline: none !important;
font-size: responsive;
}
|
Fix weird bug on Firefox (Nightly, 45a) where avatar are not visible due to translate3d 0 trick | :root {
--putainde-Contributor-height: calc(var(--r-lineHeight) * 2);
}
.putainde-Contributors {
line-height: var(--putainde-Contributor-height);
}
.putainde-Contributors-label {
font-size: var(--r-small-fontSize);
display: inline-block;
}
.putainde-Contributors-actions {
margin: 0 0 calc(var(-... | :root {
--putainde-Contributor-height: calc(var(--r-lineHeight) * 2);
}
.putainde-Contributors {
line-height: var(--putainde-Contributor-height);
}
.putainde-Contributors-label {
font-size: var(--r-small-fontSize);
display: inline-block;
}
.putainde-Contributors-actions {
margin: 0 0 calc(var(-... |
Fix Map display in VBox | .jupyter-widgets.leaflet-container {
height: 400px;
overflow: hidden;
flex: 1;
}
.jp-LinkedOutputView .jupyter-widgets.leaflet-container {
min-height: 360px; /* Min-height required for mirred output in jlab < 0.31.6 */
height: 100%;
}
.leaflet-control-velocity.leaflet-control {
background: rg... | .jupyter-widgets.leaflet-container {
min-height: 400px;
overflow: hidden;
flex: 1;
}
.jp-LinkedOutputView .jupyter-widgets.leaflet-container {
min-height: 360px; /* Min-height required for mirred output in jlab < 0.31.6 */
height: 100%;
}
.leaflet-control-velocity.leaflet-control {
background... |
Change second third block blog index css |
#second_from_top {
display: block;
position: relative;
top: 830px;
left: 100px;
}
#third_from_top {
display: block;
position: relative;
top: 860px;
left: 100px;
}
|
#second_from_top {
display: block;
position: relative;
top: 830px;
left: 100px;
}
#third_from_top {
display: block;
position: relative;
top: 845px;
left: 100px;
}
|
Add missing css for document hierarchy | .document-list-transition .documents {
position: absolute;
width: 100%;
}
.document-list-transition .enter {
transform: translateX(100%);
}
.document-list-transition.backward .enter {
transform: translateX(-100%);
}
.document-list-transition .enter-active {
transform: translateX(0);
transitio... | |
Fix stylesheets for new file_change_set stuff | pre,code,tt {
font:1em 'andale mono', monotype.com, 'lucida console', monospace;
line-height:1.5;
}
pre,code {
margin: 1.5em 0;
white-space: pre;
}
pre,code,tt {
font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace;
line-height: 1.5;
}
pre {
margin: 0;
padding: 0;
border: 0;
vertic... | pre,code,tt {
font:1em 'andale mono', monotype.com, 'lucida console', monospace;
line-height:1.5;
}
pre,code {
margin: 1.5em 0;
white-space: pre;
}
pre,code,tt {
font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace;
line-height: 1.5;
}
pre {
margin: 0;
padding: 0;
border: 0;
vertic... |
Set z-index to max value | .gentle-alerts-modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.gentle-alerts-modal-content {
background-color: #fefefe;
margin: 15% auto;
... | .gentle-alerts-modal {
display: none;
position: fixed;
z-index: 2147483647;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.gentle-alerts-modal-content {
background-color: #fefefe;
margin: 15... |
Fix broken scroll for database selector | #database-list {
list-style-type: none;
width: 40px;
margin: 0;
padding: 0;
height: 100%;
display: block;
position: fixed;
top: 0;
left: 0;
background: rgb(60, 60, 60);
padding-top: 50px;
color: rgb(250, 250, 250);
text-align: center;
z-index: 1000;
}
#database-l... | #database-list {
list-style-type: none;
width: 40px;
margin: 0;
padding: 0;
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
background: rgb(60, 60, 60);
padding-top: 50px;
color: rgb(250, 250, 250);
text-align: center;
z-index: 1000;
overflow: scr... |
Add test styling for Table | NbtkButton {
color: blue;
background-image: url('file://lime-button.png');
}
NbtkButton:hover {
background-image: url('file://cyan-button.png');
}
NbtkButton:active {
background-image: url('file://green-button.png');
}
*#red-button {
background-image: url('file://red-button.png');
}
*#blue-button {
back... | NbtkButton {
color: blue;
background-image: url('file://lime-button.png');
}
NbtkButton:hover {
background-image: url('file://cyan-button.png');
}
NbtkButton:active {
background-image: url('file://green-button.png');
}
*#red-button {
background-image: url('file://red-button.png');
}
*#blue-button {
back... |
Update styles for holy-grid css | /* https://bitsofco.de/holy-grail-layout-css-grid */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout */
body {
display: grid;
grid-template-areas:
"header header"
"main aside"
"footer footer";
grid-template-columns: 1fr 30vw;
grid-template-rows: 10vh 1fr /*80vh*/ 10vh;
}
... | /* https://bitsofco.de/holy-grail-layout-css-grid */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout */
body {
display: grid;
grid-template-areas:
"header header"
"main aside"
"footer footer";
grid-template-columns: 1fr 30vw;
grid-template-rows: 10vh 1fr /*80vh*/ 10vh;
}
... |
Remove the black border from code samples | @import 'css/spring.css';
.listingblock .switch {
border-style: none;
display: inline-block;
position: relative;
bottom: -3px;
}
.listingblock .switch--item {
padding: 10px;
background-color: #e6e1dc;
color: #282c34;
display: inline-block;
cursor: pointer;
border-top-left-radiu... | @import 'css/spring.css';
.listingblock .switch {
border-style: none;
display: inline-block;
position: relative;
bottom: -3px;
}
.listingblock .switch--item {
padding: 10px;
background-color: #e6e1dc;
color: #282c34;
display: inline-block;
cursor: pointer;
border-top-left-radiu... |
Fix interest group logo width on details page | @import '~app/styles/variables.css';
.logo {
max-height: 500px;
max-width: 500px;
height: 50%;
}
.logoSmall {
max-height: 100px;
max-width: 100px;
border-radius: 100%;
}
.description {
font-size: 18px;
font-style: italic;
}
.listItem {
margin: 8px;
padding-left: 4px;
background: var(--color-wh... | @import '~app/styles/variables.css';
.logo {
max-height: 500px;
max-width: 500px;
height: 50%;
width: auto;
}
.logoSmall {
max-height: 100px;
max-width: 100px;
border-radius: 100%;
}
.description {
font-size: 18px;
font-style: italic;
}
.listItem {
margin: 8px;
padding-left: 4px;
background:... |
Move layout nav link to the top right of the page | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative p... | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative p... |
Apply `overflow: auto` on dialog | .skylight-dialog {
width: 50%;
height: 400px;
position: fixed;
top: 50%;
left: 50%;
margin-top: -200px;
margin-left: -25%;
background-color: #fff;
border-radius: 2px;
z-index: 100;
padding: 10px;
box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}
.skylight-... | .skylight-dialog {
width: 50%;
height: 400px;
position: fixed;
top: 50%;
left: 50%;
margin-top: -200px;
margin-left: -25%;
background-color: #fff;
border-radius: 2px;
z-index: 100;
padding: 10px;
box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
overflow:... |
Add a default css file. | #generic-modal {
width: 615px !important;
}
#generic-modal .form-horizontal{
margin-bottom: 0 !important;
}
#form .control-group{
margin-top:10px;
}
#form .alert{
margin-top:10px;
}
#form .control-group .control-label{
font-weight: bold;
text-alig... | |
Make footer a little bit bigger | .reveal {
font-size: 48px;
}
.reveal .slides {
z-index: 20;
}
.reveal h6 {
position: absolute;
right: 0;
text-align: right;
top: -1.5em;
}
.reveal pre {
font-size: .75em;
white-space: pre;
width: 100%;
}
.reveal pre.large {
font-size: 1em;
}
.reveal pre.small {
font-size: .65em;
}
/** add class that has smal... | .reveal {
font-size: 48px;
}
.reveal .slides {
z-index: 20;
}
.reveal h6 {
position: absolute;
right: 0;
text-align: right;
top: -1.5em;
}
.reveal pre {
font-size: .75em;
white-space: pre;
width: 100%;
}
.reveal pre.large {
font-size: 1em;
}
.reveal pre.small {
font-size: .65em;
}
/** add class that has smal... |
Test questions are white again | tbody {
background-color: transparent !important;
border: none;
}
tbody tr:nth-child(2n) {
background-color: rgba(24, 24, 24, 0.1) !important;
}
.test .row {
padding-left: 1em;
padding-right: 1em;
}
.skipped {
background-color: rgba(255, 24, 24, 0.3) !important;
}
.test_slider {
background: #034E60 !i... | tbody {
background-color: transparent !important;
border: none;
}
tbody tr:nth-child(2n) {
background-color: rgba(24, 24, 24, 0.1) !important;
}
.test .row {
padding-left: 1em;
padding-right: 1em;
color: white;
}
.skipped {
background-color: rgba(255, 24, 24, 0.3) !important;
}
.test_slider {
backg... |
Use Chrome's colors for DevTools toolbar. | #scripts-files option.injected {
color: rgb(70, 134, 240);
}
.data-grid table {
line-height: 120%;
}
body.attached #toolbar {
height: 34px;
border-top: 1px solid rgb(100, 100, 100);
cursor: default; /* overriden */
padding-left: 0;
}
| #scripts-files option.injected {
color: rgb(70, 134, 240);
}
.data-grid table {
line-height: 120%;
}
body.attached #toolbar {
height: 34px;
border-top: 1px solid rgb(100, 100, 100);
cursor: default; /* overriden */
padding-left: 0;
}
/* Chrome theme overrides */
#toolbar {
background-ima... |
Add padding to text in text gadget | /*
* Copyright 2013 - present by OpenGamma Inc. and the OpenGamma group of companies
* Please see distribution for license.
*/
.OG-text {
background-color: #f8f8f8;
overflow: scroll;
height: 100%;
}
.OG-text .text-contents {
width: 100%;
}
/* notification */
.OG-text .og-message {
background-c... | /*
* Copyright 2013 - present by OpenGamma Inc. and the OpenGamma group of companies
* Please see distribution for license.
*/
.OG-text {
background-color: #f8f8f8;
overflow: scroll;
height: 100%;
}
.OG-text .text-contents {
width: 100%;
padding: 5px;
}
/* notification */
.OG-text .og-message ... |
Add settled classess for resolved and rejected | .body {
color: black;
}
.ng-promise-pending {
color: orange;
}
.ng-promise-resolved {
color: green;
}
.ng-promise-rejected {
color: red;
}
/* First */
.first.ng-promise-resolved {
color: blue;
}
/* Second */
.second.ng-promise-resolved {
color: yellow;
}
/* Third */
.third.ng-promise-resolved {
col... | .body {
color: black;
}
.ng-promise-pending {
color: orange;
}
.ng-promise-resolved {
color: green;
}
.ng-promise-resolved.ng-promise-settled {
color: greenyellow;
}
.ng-promise-rejected {
color: red;
}
.ng-promise-rejected.ng-promise-settled {
color: palevioletred;
}
/* First */
.first.ng-promise-re... |
Fix for title of message not lining up on the right | .blue-message {
font-size: 20px;
color: #6FDCFF;
}
.add-message {
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
vertical-align: text-top;
margin-right: 10px;
}
.message-container {
clear: both;
margin-top: 20px;
}
.message-title-input {
display: inline-block;
margin-bottom: 5px... | .blue-message {
font-size: 20px;
color: #6FDCFF;
}
.add-message {
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
vertical-align: text-top;
margin-right: 10px;
}
.message-container {
clear: both;
margin-top: 20px;
}
.message-title-input {
display: inline-block;
margin-bottom: 5px... |
Improve usability and legibility of tab close icon | :host {
@apply inline-block list-none h-full text-xs text-center pl-1 pr-4 py-2 leading-none flex-grow border;
background: var(--color-neutral-300);
color: var(--color-neutral-700);
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: var(--color-neutral-500);
&:not(:last-of-type) {... | :host {
@apply inline-block list-none h-full text-xs text-center pl-1 pr-4 py-2 leading-none flex-grow border;
background: var(--color-neutral-300);
color: var(--color-neutral-700);
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: var(--color-neutral-500);
&:not(:last-of-type) {... |
Add top padding to registration form. | body {
padding-top: 2em;
}
.help-block {
color: #333;
}
.registrant-panel-name {
margin-top: 0 !important;
}
#registration-form {
margin: 1em;
}
@media (min-width: 33em) {
#registration-form {
width: 62%;
margin: auto;
}
}
| body {
padding-top: 2em; /* prevent navbar overlap */
}
.help-block {
color: #333;
}
#registration-form {
margin-top: 3em !important; /* prevent navbar overlap */
}
@media (min-width: 33em) {
#registration-form {
width: 62%;
margin: auto;
}
}
|
Add blue center projects css | html {
font-family: Helvetica;
background-color: #BCED91;
}
h2 {
display: block;
text-align: center;
border: 5px solid black;
padding: 20px;
}
#definition {
text-align: center;
margin-left: 340px;
margin-right: 340px;
}
#red {
color: red;
}
#red_center {
color: red;
text-align: center;
}
.... | html {
font-family: Helvetica;
background-color: #BCED91;
}
h2 {
display: block;
text-align: center;
border: 5px solid black;
padding: 20px;
}
#definition {
text-align: center;
margin-left: 340px;
margin-right: 340px;
}
#red {
color: red;
}
#red_center {
color: red;
text-align: center;
}
... |
Make modal a bit narrower | html, body {
height: calc(100% - 10%);
margin: 2%;
}
h1 {
opacity: 1;
font-size: 100%;
}
h5 {
opacity: 0.75;
}
#inputForm {
height: 100%
}
.cy {
border: solid;
border-width: 0.5;
height: 100%;
}
.cy-container {
height: 100%;
}
.btn-div{
padding-top:5px;
padding-bottom:5px;
}
| html, body {
height: calc(100% - 10%);
margin: 2%;
}
h1 {
opacity: 1;
font-size: 100%;
}
h5 {
opacity: 0.75;
}
#inputForm {
height: 100%
}
.cy {
border: solid;
border-width: 0.5;
height: 100%;
}
.cy-container {
height: 100%;
}
.btn-div{
padding-top:5px;
padding-bottom:5px;
}
body .mo... |
Update dark theme CSS style for lists | .dark {
color: #cccccc;
background-color: black;
}
.popover-content, .popover-title, .hosts-list {
color: black;
}
.dark .panel {
background-color: #232323;
}
| .dark {
color: #cccccc;
background-color: black;
}
.popover-content, .popover-title, .hosts-list {
color: black;
}
.dark .panel {
background-color: #232323;
}
.list-group .list-group-item {
background-color: #232323;
}
|
Adjust formatting to match other themes | /**
* All Hallows Eve theme
*
* @author Flinn Mueller
* @version 1.0
* @attribution Adapted from Ultraviolet RubyGem
*/
pre {
background: #000;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
margin: 0px;
padding: 0px;
p... | /**
* All Hallows Eve theme
*
* @author Flinn Mueller
* @version 1.0
* @attribution Adapted from Ultraviolet RubyGem
*/
pre {
background: #000;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
margin: 0px;
p... |
Reduce top and bottom padding | html, body {
height: 100%;
margin: 0;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 80px 30px 80px 30px;
position: relative;
}
.form {
margin-top: 30px;
}
#unknownNameErrorBox, #noImagesFoundWarningBox, #downloadingInfoBox {
display: none;
}
| html, body {
height: 100%;
margin: 0;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 60px 30px 60px 30px;
position: relative;
}
.form {
margin-top: 30px;
}
#unknownNameErrorBox, #noImagesFoundWarningBox, #downloadingInfoBox {
display: none;
}
|
Fix typo of "resize: none" | html {
font-size: 62.5%;
}
body {
margin: 8px;
}
html, body, .app {
height: 100%;
}
.title {
font-size: 3.0rem;
}
.app {
position: relative;
width: 100%;
margin: 20px 4px 0px;
}
.source, .destination {
display: inline-block;
width: 50%;
height: 70%;
box-sizing: border-box;
}
.source {
float: le... | html {
font-size: 62.5%;
}
body {
margin: 8px;
}
html, body, .app {
height: 100%;
}
.title {
font-size: 3.0rem;
}
.app {
position: relative;
width: 100%;
margin: 20px 4px 0px;
}
.source, .destination {
display: inline-block;
width: 50%;
height: 70%;
box-sizing: border-box;
}
.source {
float: le... |
Remove unused CSS rotation examples | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700);
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
.info_window {
display:inline-block;
vertical-align:top;
margin-right: 10px;
}
body {
font:10pt 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;... | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700);
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
.info_window {
display:inline-block;
vertical-align:top;
margin-right: 10px;
}
body {
font:10pt 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;... |
Increase the width and consequently shrink the size of user-photo | .centered-content {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#loader, #login, #main {
height: 100%;
}
#main {
padding: 8px;
}
#loading-gif {
height: 16px;
width: 16px;
}
#img-logo-img {
height: 125px;
width: 125... | body {
width: 400px;
}
.centered-content {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#loader, #login, #main {
height: 100%;
}
#main {
padding: 8px;
}
#loading-gif {
height: 16px;
width: 16px;
}
#img-logo-img {
h... |
Update scrollbar gutter to make less visible | html, body {
height : 100%; width: 100%;
margin : 0;
overflow: hidden;
cursor : default;
font-family: arial;
font-size: 11px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul, li {
margin :... | html, body {
height : 100%; width: 100%;
margin : 0;
overflow: hidden;
cursor : default;
font-family: arial;
font-size: 11px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul, li {
margin :... |
Correct cuepoint position with Videogular v1 theme | videogular vg-cuepoints {
position: relative;
top: -50px;
display: block;
width: 100%;
height: 0px;
}
videogular vg-cuepoints vg-cuepoint {
position: absolute;
display: block;
width: 2px;
height: 50px;
background-color: red;
}
| videogular vg-cuepoints {
position: relative;
display: block;
width: 100%;
height: 0px;
}
videogular vg-cuepoints vg-cuepoint {
position: absolute;
top: -16px;
display: block;
width: 2px;
height: 30px;
background-color: red;
}
|
Improve CSS for definition list grids | /* Give the main header an underline. */
h1 {
padding-bottom: 21px;
margin-bottom: 21px;
border-bottom: 1px solid #ddd;
}
/* Add small subtitles. */
.subtitle {
margin-top: -10.5px;
color: #bbb;
}
/* Lay out definition lists list tables. */
dl {
display: flex;
flex-flow: row wrap;
}
dt {
flex-basi... | /* Give the main header an underline. */
h1 {
padding-bottom: 21px;
margin-bottom: 21px;
border-bottom: 1px solid #ddd;
}
/* Add small subtitles. */
.subtitle {
margin-top: -10.5px;
color: #bbb;
}
/* Display definition lists in grid form. */
dl {
display: grid;
grid-template-columns: fit-content(25%)... |
Reduce padding on search form. | .search-widget {
max-width: 500px;
}
.search-widget .search-form {
margin: 10px 0;
border-width: 3px;
text-align: center;
}
.search-widget .search-query {
font-family: Monda;
padding-right: 10px;
min-width: 83%;
}
.search-widget .search-button {
padding: 5px 12px;
}
.search-widget .search-results {
di... | .search-widget {
max-width: 500px;
}
.search-widget .search-form {
margin: 10px 0;
border-width: 3px;
text-align: center;
padding: 8px;
}
.search-widget .search-query {
font-family: Monda;
padding-right: 10px;
min-width: 83%;
}
.search-widget .search-button {
padding: 5px 12px;
}
.search-widget .searc... |
Add margin to top and bottom of round buttons | .round {
border-radius: 100%;
height: 35px;
width: 35px;
display: inline-block;
margin: 0 5px;
color: var(--text-teal-light);
border: solid 2px var(--text-teal);
outline: none;
background-color: inherit;
cursor: pointer;
padding: 6px;
}
.round.small {
height: 30px;
width: 30px;
padding: 5px... | .round {
border-radius: 100%;
height: 35px;
width: 35px;
display: inline-block;
margin: 5px;
color: var(--text-teal-light);
border: solid 2px var(--text-teal);
outline: none;
background-color: inherit;
cursor: pointer;
padding: 6px;
}
.round.small {
height: 30px;
width: 30px;
padding: 5px;
... |
Use inter as the default font | body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
background: #f0f4f8;
}
a {
text-decoration: none;
}
| @import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
background: #f0f4f8;
}
a {
text-decoration: none;
}
|
Add more subtle hover background color | .select-list ol li {
background-color: #27292b;
border-bottom: 1px solid #1e1e1e;
}
.select-list li .label {
color: #ddd;
}
.select-list li .right {
color: #999;
display: inline-block;
margin-top: -3px;
}
.select-list .key-binding {
background: -webkit-linear-gradient(
rgba(100, 100, 100, 0.5),
... | .select-list ol li {
background-color: #27292b;
border-bottom: 1px solid #1e1e1e;
}
.select-list li .label {
color: #ddd;
}
.select-list li .right {
color: #999;
display: inline-block;
margin-top: -3px;
}
.select-list .key-binding {
background: -webkit-linear-gradient(
rgba(100, 100, 100, 0.5),
... |
Adjust font size of the preformatted text | body {
font-family: "dejavu sans", sans-serif;
width: 80ex;
margin: 3em auto;
background-color: #eee;
border: 3px solid #ddd;
}
div.document {
padding: 3em;
background-color: white;
}
h1.title {
font-size: 200%;
background-color: white;
border: 0px;
margin: 0px;
}
h2.subti... | body {
font-family: "dejavu sans", sans-serif;
width: 80ex;
margin: 3em auto;
background-color: #eee;
border: 3px solid #ddd;
}
div.document {
padding: 3em;
background-color: white;
}
h1.title {
font-size: 200%;
background-color: white;
border: 0px;
margin: 0px;
}
h2.subti... |
Use new global support for centered tab groups. | #libraries-index {
justify-content: center;
}
#libraries-index .tabs {
flex-flow: column;
align-items: center;
}
#libraries-index .tabs:first-child {
margin-bottom: -1.5em;
}
#libraries-index .tabs.contains-title > h1 {
margin-left: 0;
margin-right: 0;
}
#libraries-index .tabs ul > li.contai... | #libraries-index .tabs {
flex-flow: column;
align-items: center;
}
#libraries-index .tabs:first-child {
margin-bottom: -1.5em;
}
#libraries-index .tabs.contains-title > h1 {
margin-left: 0;
margin-right: 0;
}
#libraries-index .tabs ul > li.contains-children {
align-items: center;
}
#librarie... |
Add copyright to CSS file | footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
table {
width: 100%;
}
.label {
padding: 2px;
border-radius: 4px;
font-weight: bold;
font-size :12px;
text-transform: uppercase;
}
.feedback_ok {
color: green;
}
.feedback_ko {
color: red;
}
td.alignleft, th.... | /*
Copyright 2015 Genymobile
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
dist... |
Fix ConsolOptions allignment when collapsing | .vm-detail-settings {
transition: height 1s;
height: 0px;
overflow: hidden;
width: 100%;
}
.open-settings {
height: 110px;
margin-left: 2em;
}
.console-option-description {
width: 20em;
}
| .vm-detail-settings {
transition: height 1s;
height: 0px;
overflow: hidden;
width: 100%;
margin-left: 2em;
}
.open-settings {
height: 110px;
margin-left: 2em;
}
.console-option-description {
width: 20em;
}
|
Make select class within StateSortedSchools full width of section | .stateSchools {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-around;
}
.select {
min-width: 300px;
}
/* iPhone Safari-only media query to prevent zoom effect when the select is focused */
/* see https://stackoverflow.com/questions/6483425/prevent-iphone-from-zooming-in-on-... | .stateSchools {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-around;
}
.select {
min-width: 300px;
width: 100%;
max-width: 900px;
}
/* iPhone Safari-only media query to prevent zoom effect when the select is focused */
/* see https://stackoverflow.com/questions/6483425... |
Fix vertical alignment in report summary | body {
background: white;
color: black;
font-family: sans-serif;
}
table {
border-collapse: collapse;
}
th {
background: #ccc;
border: solid 1px black;
border-bottom: solid 2px black;
padding: 0.5em;
}
#index td, #tests td {
border: solid 1px black;
padding: 0 0.5em;
}
.fail ... | body {
background: white;
color: black;
font-family: sans-serif;
}
table {
border-collapse: collapse;
}
th {
background: #ccc;
border: solid 1px black;
border-bottom: solid 2px black;
padding: 0.5em;
}
#index td, #tests td {
border: solid 1px black;
padding: 0 0.5em;
}
.fail ... |
Revert "Revert "Revert "Revert "CSS Fix for Slider"""" | /* ==========================================================================
WP Admin Bar Fixes
========================================================================== */
.logged-in .navbar-fixed-top {margin-top: 27px;}
.ab-item img.media-object { min-width: auto; min-height: auto;}
/* ===================... | /* ==========================================================================
WP Admin Bar Fixes
========================================================================== */
.logged-in .navbar-fixed-top {margin-top: 27px;}
.ab-item img.media-object { min-width: auto; min-height: auto;}
/* ===================... |
Fix for certificate password dialog spacing. | /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#certificateManagerPage {
min-width: 700px;
}
.certificate-tree-table {
width: 100%;
}
.certificate-tree {
/* TODO(mattm): BLAH. Make this... | /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#certificateManagerPage {
min-width: 700px;
}
#certificateRestoreOverlay h1 {
/* Leave enough space for the close-button. */
/* TODO(KGR): m... |
Fix Firefox input css issue | input[type='number'] {
-moz-appearance: textfield;
}
input[type='text'],
input[type='number'] {
appearance: none;
box-shadow: none;
border-radius: none;
text-align: center;
font-size: 1em;
color: $color-silver;
border: none;
width: 100%;
background-color: $color-tundora;
transition: background-co... | @define-mixin inputText {
appearance: none;
box-shadow: none;
border-radius: none;
text-align: center;
font-size: 1em;
color: $color-silver;
border: none;
width: 100%;
background-color: $color-tundora;
transition: background-color 0.3s;
&:focus {
color: $color-mineShaft;
background-color:... |
Reorder properties to be in alpha order | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path... | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path... |
Remove text-shadow on selected text | html {
height: 100%;
}
body {
background: var(--body-background-color);
color: var(--body-color);
font-family: var(--body-font-family);
font-size: var(--body-font-size);
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
transition: background 0.1s ease 0, color 0.1s ease 0;
... | html {
height: 100%;
}
body {
background: var(--body-background-color);
color: var(--body-color);
font-family: var(--body-font-family);
font-size: var(--body-font-size);
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
transition: background 0.1s ease 0, color 0.1s ease 0;
... |
Remove .hide util CSS class (it's really part of @wearegenki/vue-directive-view) | /* Position */
.pos-f { position: fixed; }
.pos-a { position: absolute; }
.pos-r { position: relative; }
.pos-s { position: static; }
.pos-i { position: initial; } /* default */
/* Border radius */
.rad {
border-radius: var(--radius);
}
/* Floats */
.float-l { float: left; }
.float-r { float: right; }
@each $me... | /* Position */
.pos-f { position: fixed; }
.pos-a { position: absolute; }
.pos-r { position: relative; }
.pos-s { position: static; }
.pos-i { position: initial; } /* default */
/* Border radius */
.rad {
border-radius: var(--radius);
}
/* Floats */
.float-l { float: left; }
.float-r { float: right; }
@each $me... |
Add CSS for seconds indicator | #clock {
border-style: solid;
border-radius: 50%;
margin: 10px auto;
width: 300px;
height: 300px;
position: relative;
}
#clock.day {
border-color: orange black black;
border-width: 3px 1px 1px ;
}
#clock.night {
border-color: black black orange;
border-width: 1px 1px 3px ;
}
#clock img {
-webkit-tra... | #clock {
border-style: solid;
border-radius: 50%;
margin: 10px auto;
width: 300px;
height: 300px;
position: relative;
}
#secs {
width: 10px;
height: 10px;
background-color: black;
}
#clock.day {
border-color: orange black black;
border-width: 3px 1px 1px ;
}
#clock.night {
border-color: black bla... |
Change background color to black | body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
| @import './variables.css';
body {
margin: 0;
padding: 0;
font-family: sans-serif;
color: white;
background-color: #131313;
}
a {
color: white;
text-decoration: none;
}
|
Revert "Increase font size to correct printing issue" | /**
* CSS for jQuery Plugin Fast Facts
*/
body {
font-size: 22px;
}
.subtitle {
font-size: 50%;
vertical-align: middle;
}
.fast-facts-problem {
border-bottom: 1px solid #000;
font-size: 110%;
margin: 0 auto 70px;
max-width: 40px;
text-align: right;
}
.fast-facts-operator {
float: left;
}
#name {
border... | /**
* CSS for jQuery Plugin Fast Facts
*/
.subtitle {
font-size: 50%;
vertical-align: middle;
}
.fast-facts-problem {
border-bottom: 1px solid #000;
font-size: 110%;
margin: 0 auto 40px;
max-width: 40px;
text-align: right;
}
.fast-facts-operator {
float: left;
}
#name {
border-bottom: 2px solid black;
w... |
Adjust System theme for Linux | /*******************************************************************************
* Styling for Archi that over-rides some Eclipse stylings
*******************************************************************************/
TabbedPropertyList {
/* Default is too light */
color : #202020; /* text color in the... | /*******************************************************************************
* Styling for Archi that over-rides some Eclipse stylings
*******************************************************************************/
TabbedPropertyList {
/* Default is too light */
color : #202020; /* text color in the... |
Increase textarea height to 100px | .modal-open {
/* needed for iOS to not zoom in when modals are opened */
overflow-y: auto;
}
input[type=text] {
width: 100%;
}
textarea {
width: 100%;
}
#encodedInput {
font-family: monospace;
}
pre {
white-space: all;
word-break: normal;
}
.fixed {
position: fixed;
width: 100%;
width: calc(100% - 30px);
bac... | .modal-open {
/* needed for iOS to not zoom in when modals are opened */
overflow-y: auto;
}
input[type=text] {
width: 100%;
}
textarea {
width: 100%;
height: 100px;
}
#encodedInput {
font-family: monospace;
}
pre {
white-space: all;
word-break: normal;
}
.fixed {
position: fixed;
width: 100%;
width: calc(10... |
Fix balloons messin the viewport | :root {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif;
background-image: url('streamers-bg.svg'), linear-gradient(#306CBF, #5D1D6E);
background-repeat: repeat, no-repeat;
height: 100vh;
overflow: hidden;
}
| :root {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif;
background-image: url('streamers-bg.svg'), linear-gradient(#306CBF, #5D1D6E);
background-repeat: repeat, no-repeat;
height: 100vh;
}
:root, body {
height: 100vh;
width: 100vw;
overflow: hidden... |
Raise font size and line-heights | body, html {
font-family: sans-serif;
font-size: 18px;
}
| body {
font-size: 18px;
}
h1,h2,h3,h4,h5,h6,p {
line-height: 1.45;
}
h1 { font-size: 4em; }
h2 { font-size: 3em; }
|
Set navbar border-radius to 0px | .navbar
{
background-color: #495F72;
overflow: hidden;
}
.navbar .icon {
display: none;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: x-large;
font-weight:bold;
}
@media screen and (max-width: 1024px) ... | .navbar
{
background-color: #495F72;
overflow: hidden;
}
.navbar .icon {
display: none;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: x-large;
font-weight:bold;
border-radius:0px;
}
@media screen and (max... |
Cover take 100% of landing view | html,body{
height: 100%;
width: 100%;
margin: 0;
}
#cover{
height: 100%;
width: 100%;
overflow: hidden;
text-align: center;
position: relative;
background-size: cover;
background-attachment: fixed;
} | |
Add overflow: hidden to prevent scrolling to right on mobile | .home {
display: flex;
min-height: 100vh;
flex-direction: column;
background: url("images/Family-2.png");
background-size: 100%;
background-repeat: no-repeat;
}
.main {
display: flex;
flex: 1;
}
| .home {
display: flex;
min-height: 100vh;
flex-direction: column;
background: url("images/Family-2.png");
background-size: 100%;
background-repeat: no-repeat;
overflow: hidden;
}
.main {
display: flex;
flex: 1;
}
|
Apply some more styling, for better or worse :-) | .command-panel {
position: absolute;
bottom: 0;
width: 100%;
background: #515151;
padding: 3px;
}
.command-panel .preview-list {
max-height: 300px;
overflow: auto;
margin-bottom: 3px;
position: relative;
}
.command-panel .preview-list .path {
padding-left: 3px;
color: #00ffff;
}
.command-panel ... | .command-panel {
position: absolute;
bottom: 0;
width: 100%;
background: #515151;
padding: 3px;
}
.command-panel .preview-list {
max-height: 300px;
overflow: auto;
margin-bottom: 3px;
position: relative;
background: #161616;
}
.command-panel .preview-list .path {
padding-left: 3px;
color: #f9e... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.