Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Change input textbox to monospace font. | #edidWrapper {
width:auto;
}
#edidParsed {
float:right;
width:600px;
}
#inputTextBox {
float:left;
position:relative;
}
#parseButton {
position:absolute;
right:0px;
}
#inputEdid, #outputEdid {
resize: none;
}
#edidTreeviewWrapper {
float:left;
width:250px;
}
#edidDataWrap... | #edidWrapper {
width:auto;
}
#edidParsed {
float:right;
width:600px;
}
#inputTextBox {
float:left;
position:relative;
}
#parseButton {
position:absolute;
right:0px;
}
#inputEdid, #outputEdid {
resize: none;
font-family: Consolas,"Liberation Mono",Courier,monospace;
}
#edidTree... |
Fix Dialog CSS overflow auto to aui-wdiget-bd | .aui-dialog {
}
.aui-dialog .aui-icon-loading {
margin: 0 auto;
}
.aui-dialog .aui-widget-hd {
color: #333333;
cursor: move;
font-size: 15px;
font-weight: bold;
padding: 8px 10px;
}
.aui-dialog .aui-widget-bd {
border: 1px solid #ccc;
border-color: transparent #999 #999 #bbb;
padding: 10px;
background: #f... | .aui-dialog {
}
.aui-dialog .aui-icon-loading {
margin: 0 auto;
}
.aui-dialog .aui-widget-hd {
color: #333333;
cursor: move;
font-size: 15px;
font-weight: bold;
padding: 8px 10px;
}
.aui-dialog .aui-widget-bd {
border: 1px solid #ccc;
border-color: transparent #999 #999 #bbb;
padding: 10px;
background: #f... |
Use display:none on notes, to prevent them from taking up space. | img.fill {
position: absolute;
left: 0;
top: 0;
min-width: 100%;
min-height: 100%;
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
z-index: -1;
}
a.headerlink {
visibility: hidden;
}
h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hove... | img.fill {
position: absolute;
left: 0;
top: 0;
min-width: 100%;
min-height: 100%;
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
z-index: -1;
}
a.headerlink {
visibility: hidden;
}
h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hove... |
Add text shadow behind quote text | .quoteBanner {
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
margin: 0;
text-align: center;
color: white;
height: 480px;
background-image: url(images/lincoln.jpg);
background-size: 100%;
background-position: right top;
background-repeat: no-repeat;
}
.quoteLin... | .quoteBanner {
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
margin: 0;
text-align: center;
text-shadow: #000 1px 0 15px;
color: white;
height: 480px;
background-image: url(images/lincoln.jpg);
background-size: 100%;
background-position: right top;
background... |
Fix button shadows on hover state | .slick-row{
height: 30px !important;
}
.slick-cell, .hg-cell{
height: 100% !important;
border: 0px !important;
}
.btn-mini {
padding: 2px 6px;
font-size: 14px;
line-height: 14px;
}
.btn-delete {
color: #999999;
}
.btn-delete:hover {
text-decoration: none;
}
.hg-item-name:hover {
text-... | .slick-row{
height: 30px !important;
}
.slick-cell, .hg-cell{
height: 100% !important;
border: 0px !important;
}
.btn-mini {
padding: 2px 6px;
font-size: 14px;
line-height: 14px;
}
.btn-default.btn-mini:hover,
.btn-default.btn-mini:focus,
.btn-default.btn-mini:active,
.btn-default.btn-mini.active,
... |
Fix for select2 to match other inputs height | /*
*
* Backpack Crud / Form
*
*/
.form-group.required label:not(:empty)::after {
content: ' *';
color: #ff0000;
}
.help-block {
margin-top: .25rem;
margin-bottom: .25rem;
color: #73818f;
font-size: 0.9em;
}
.nav-tabs-custom .nav-tabs .nav-link:hover {
border-bottom: 1px solid #fff;
} | /*
*
* Backpack Crud / Form
*
*/
.form-group.required label:not(:empty)::after {
content: ' *';
color: #ff0000;
}
.help-block {
margin-top: .25rem;
margin-bottom: .25rem;
color: #73818f;
font-size: 0.9em;
}
.nav-tabs-custom .nav-tabs .nav-link:hover {
border-bottom: 1px solid #fff;
}
form .selec... |
Correct default body font and added fallbacks. | body {
color: #535a5a;
font-family: 'Lato';
font-size: 16px;
margin: 0;
padding: 0;
}
| body {
color: #535a5a;
font-family: 'Titillium','Lato','Helvetica';
font-size: 16px;
margin: 0;
padding: 0;
}
|
Add h0 and h00 type scale | /* Basscss Type Scale */
.h1 { font-size: var(--h1) }
.h2 { font-size: var(--h2) }
.h3 { font-size: var(--h3) }
.h4 { font-size: var(--h4) }
.h5 { font-size: var(--h5) }
.h6 { font-size: var(--h6) }
:root {
--h1: 2rem;
--h2: 1.5rem;
--h3: 1.25rem;
--h4: 1rem;
--h5: .875rem;
--h6: .75rem;
}
| /* Basscss Type Scale */
.h00 { font-size: var(--h00) }
.h0 { font-size: var(--h0) }
.h1 { font-size: var(--h1) }
.h2 { font-size: var(--h2) }
.h3 { font-size: var(--h3) }
.h4 { font-size: var(--h4) }
.h5 { font-size: var(--h5) }
.h6 { font-size: var(--h6) }
:root {
--h00: 4rem;
--h0: 3rem;
--h1: 2rem;
--h2: ... |
Use padding for .signature paragraph instead of .foot | body { background-color: white; }
hr { border-width: 0pt; }
:link { color: #007d71; }
.sect1 .title {
color: #990066;
text-align: center;
}
.sect2 .title {
color: #005A9C;
text-align: left;
}
.foot {
text-align: center;
font-size: 80%;
padding: 3ex;
}
.signature {
text-align: right;
}
table {
... | body { background-color: white; }
hr { border-width: 0pt; }
:link { color: #007d71; }
.sect1 .title {
color: #990066;
text-align: center;
}
.sect2 .title {
color: #005A9C;
text-align: left;
}
.foot {
text-align: center;
font-size: 80%;
}
.signature {
text-align: right;
padding: 3ex;
}
table {
... |
Remove dimmed auto closed character | /*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... | /*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*---------------------------------------------------------------... |
Change the loading bar position to fixed. | /*
* Source: http://codepen.io/brunjo/pen/xbwVXJ;
*/
.loader {
background-color: #fdba2c;
height: 6px;
left: 0;
position: absolute;
top: 54px;
width: 100%;
}
.bar {
content: "";
display: inline;
position: absolute;
width: 0;
height: 100%;
left: 50%;
text-align: center;
}
.bar:nth-child(1) {
... | /*
* Source: http://codepen.io/brunjo/pen/xbwVXJ;
*/
.loader {
background-color: #fdba2c;
height: 6px;
left: 0;
position: fixed;
top: 54px;
width: 100%;
}
.bar {
content: "";
display: inline;
position: absolute;
width: 0;
height: 100%;
left: 50%;
text-align: center;
}
.bar:nth-child(1) {
b... |
Add the PDF.JS viewer CSS. | /* PDF.JS plugin viewer styles: hide the viewer controls which don't make any sense
in Pydio: opening (another) file and bookmarks. */
/* Hides from toolbar. */
#openFile, #viewBookmark {display: none !important}
/* Hides from drop-down menu: the menu includes duplicates of these actions
to display them when th... | |
Implement max width so that elements are centered |
#app footer {
background-color: #00d1b2;
margin-top: 2em;
}
#app footer p, #app footer i, #app footer a {
color: white;
}
#app footer a {
font-weight: bold;
}
#app > section {
padding-top: 2em;
background-color: transparent;
}
body {
background: url(/images/background.png);
height: ... |
#app footer {
background-color: #00d1b2;
margin-top: 2em;
}
#app footer p, #app footer i, #app footer a {
color: white;
}
#app footer a {
font-weight: bold;
}
#app > section {
padding-top: 2em;
background-color: transparent;
}
body {
background: url(/images/background.png);
height: ... |
Change to UIUC color scheme | :root {
--uiuc-blue: rgba(19, 41, 75, 1.0);
--uiuc-orange: rgba(232, 74, 39, 1.0);
--uiuc-second-blue: rgba(5, 86, 165, 1.0);
--uiuc-third-blue: rgba(32, 64, 151);
}
.tabs .tab a:hover, .tabs .tab a.active {
background-color: transparent;
color: var(--uiuc-blue);
}
a {
color: var(--uiuc-second-... | |
Update style for wider tables | .topic {
background-color: #DED;
}
| .topic {
background-color: #DED;
}
body {
word-wrap: break-word;
}
.wy-nav-content {
max-width: 900px !important;
}
|
Add commented out responsive styles which retain the aspect ratio | .mapillary-js {
background-color: #000;
width: 320px;
height: 240px;
position: relative;
} | .mapillary-js {
background-color: #000;
width: 320px;
height: 240px;
position: relative;
}
/*
// Make the viewer responsive and retain 4/3 ratio
.mapillary-js {
position: relative;
width: 100%;
padding-bottom: 56.25%;
}
.mapillary-js > canvas {
position: absolute;
top: 0;
right... |
Apply new font styles to the counters | @import '@teamleader/ui-colors';
@import '@teamleader/ui-utilities';
@import '@teamleader/ui-typography';
:root {
--border-radius: 4px;
}
.counter {
background: var(--background-color);
border-radius: 50%;
color: var(--color-white);
display: inline-block;
font-size: calc(1.4 * var(--unit));
font-family:... | @import '@teamleader/ui-colors';
@import '@teamleader/ui-utilities';
@import '@teamleader/ui-typography';
:root {
--border-radius: 4px;
}
.counter {
background: var(--background-color);
border-radius: 50%;
color: var(--color-white);
display: inline-block;
font-family: var(--font-family-bold);
font-size:... |
Add new line at end of file | .jsavarraytreenode {
border: none;
background-color: transparent;
box-shadow: none;
border-radius: 8px;
}
.jsavarraytreenode .jsavarray {
margin: 0;
}
.jsavarraytreenode .jsavarray {
min-height: 47px;
} | .jsavarraytreenode {
border: none;
background-color: transparent;
box-shadow: none;
border-radius: 8px;
}
.jsavarraytreenode .jsavarray {
margin: 0;
}
.jsavarraytreenode .jsavarray {
min-height: 47px;
}
|
Change font size of h1 tag | body {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #f1f1f1;
font-family: 'Noto Sans', sans-serif;
}
/* remove the underline link style */
a:focus, a:hover {
text-decoration: none;
}
/* add a gap under the navba... | body {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #f1f1f1;
font-family: 'Noto Sans', sans-serif;
}
/* remove the underline link style */
a:focus, a:hover {
text-decoration: none;
}
/* add a gap under the navba... |
Improve font size on mobile | .nested ul {
@apply mb-32;
}
.nested li {
@apply mb-2 text-grey-darkest;
}
.nested p,
figure {
@apply mb-4 leading-normal;
}
.nested a {
@apply text-primary-color;
}
.nested hr {
@apply border-grey my-16;
}
.nested h2 {
@apply mt-6 mb-4;
}
.nested h3 {
@apply mb-5 mt-6;
}
.nested h4 {
@apply mb-2 mt-5;
}
.nes... | .nested ul {
@apply mb-32;
}
.nested li {
@apply mb-2 text-grey-darkest;
}
.nested p,
figure {
@apply mb-4 leading-normal;
}
.nested a {
@apply text-primary-color;
}
.nested hr {
@apply border-grey my-16;
}
.nested h2 {
@apply mt-6 mb-4 text-xl;
}
@screen sm {
.nested h2 {
@apply mt-6 mb-4 text-3xl;
}
}
.n... |
Set padding from 50px to 10px | body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
.label {
color: #565b61
} | body {
padding: 10px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
.label {
color: #565b61
} |
Fix for horizontal scrollbar with bootstrap css | .content {
margin: 0 auto;
padding: 0 2em;
max-width: 800px;
margin-bottom: 50px;
line-height: 1.6em;
}
.header {
margin: 0;
color: #333;
text-align: center;
padding: 2.5em 2em 0;
border-bottom: 1px solid #eee;
}
.header h1 {
margin: 0.2em 0;
font-size: 3em;
font-weight: 300;
}
.header h4 {... | .layout {
padding: 0 15px;
}
.content {
margin: 0 auto;
padding: 0 2em;
max-width: 800px;
margin-bottom: 50px;
line-height: 1.6em;
}
.header {
margin: 0;
color: #333;
text-align: center;
padding: 2.5em 2em 0;
border-bottom: 1px solid #eee;
}
.header h1 {
margin: 0.2em 0;
font-size: 3em;
f... |
Fix titlebar color when opening the menu from mobile devices | /* Structure Styles
/*---------------------------------------------*/
#content {
/* padding-top: 40px; */
}
#footer {
padding: 1em 0;
margin-top: 1em;
background: #f1f1f1;
text-align: center;
}
.top-bar {
background-color: #4183D7 !important;
}
.top-bar-section li:not(.has-form) a:not(.button... | /* Structure Styles
/*---------------------------------------------*/
#content {
/* padding-top: 40px; */
}
#footer {
padding: 1em 0;
margin-top: 1em;
background: #f1f1f1;
text-align: center;
}
.top-bar {
background-color: #4183D7 !important;
}
.top-bar-section li:not(.has-form) a:not(.button... |
Update left border in CSS | body {
background-image: url("blog_background.jpg");
}
.background {
margin-top: 30px;
margin-right: 85px;
margin-left: 75px;
position: fixed;
height: 100%;
background-color: white;
border: 2px solid #d3d3d3;
border-radius: 20px;
border-bottom: -50px;
padding-top: 5px;
padding-left: 5px;
padd... | body {
background-image: url("blog_background.jpg");
}
.background {
margin-top: 30px;
margin-right: 85px;
margin-left: 75px;
position: fixed;
height: 100%;
background-color: white;
border: 2px solid #d3d3d3;
border-radius: 20px;
border-bottom: -50px;
padding-top: 5px;
padding-left: 5px;
padd... |
Make themes in the incognito NTP which are bottom-aligned attach to the bottom of the screen, rather than the bottom of the text box. | html {
background-image:url(chrome://theme/theme_ntp_background?$1);
background-color:$2;
background-position:$3;
background-repeat:$5;
overflow:hidden;
}
html[bookmarkbarattached='true'] {
background-position:$4;
} | html {
background-image: url(chrome://theme/theme_ntp_background?$1);
background-color: $2;
background-position: $3;
background-repeat: $5;
height: 100%;
overflow: auto;
background-attachment: fixed;
}
html[bookmarkbarattached='true'] {
background-position: $4;
}
|
Fix stage sizing for www | @import "../../css/units.css";
@import "../../css/colors.css";
.stage-wrapper {
box-sizing: border-box;
}
.stage-canvas-wrapper {
padding-left: $space;
padding-right: $space;
/* Hides negative space between edge of rounded corners + container, when selected */
user-select: none;
}
| @import "../../css/units.css";
@import "../../css/colors.css";
.stage-wrapper * {
box-sizing: border-box;
}
.stage-canvas-wrapper {
padding-left: $space;
padding-right: $space;
/* Hides negative space between edge of rounded corners + container, when selected */
user-select: none;
}
|
Remove timeline wrapper margin top and margin bottom | .vertical-timeline * {
box-sizing: border-box;
}
.vertical-timeline {
width: 95%;
max-width: 1170px;
margin: 2em auto;
position: relative;
padding: 2em 0;
}
.vertical-timeline::after {
/* clearfix */
content: '';
display: table;
clear: both;
}
.vertical-timeline::before {
/* this is the vertical... | .vertical-timeline * {
box-sizing: border-box;
}
.vertical-timeline {
width: 95%;
max-width: 1170px;
margin: 0 auto;
position: relative;
padding: 2em 0;
}
.vertical-timeline::after {
/* clearfix */
content: '';
display: table;
clear: both;
}
.vertical-timeline::before {
/* this is the vertical l... |
Change color palette for index | body {
background-color: #0FFF30;
}
h1 {
font-family: Modern No. 20;
text-align: center;
font-style: bold;
}
nav {
font-family: Modern No. 20;
margin: auto;
padding-left: 130px;
}
.navigation {
border: 3px outset gray;
margin: 0px 25px 0px 25px;
padding: 5px 2px 5px 2px;
background-color:#DCDC... | body {
background-color: #5F9688;
}
h1 {
font-family: Modern No. 20;
text-align: center;
font-style: bold;
}
nav {
font-family: Modern No. 20;
margin: auto;
padding-left: 130px;
max-width: 900px;
height: 100px;
}
.navigation {
border: 3px outset gray;
margin: 0px 25px 0px 25px;
padding: 5px 2... |
Fix problem of nested <u-form-item> layout=block | .root {}
.label {
display: inline-block;
padding-right: 5px;
}
.label[required]:after {
content: '*';
color: $brand-error;
}
.field {
display: inline-block;
position: relative;
}
.message {
margin-left: 5px;
padding: 0 5px;
background: $background-color-base;
}
.message[color="e... | .root {}
.label {
display: inline-block;
padding-right: 5px;
}
.label[required]:after {
content: '*';
color: $brand-error;
}
.field {
display: inline-block;
position: relative;
}
.message {
margin-left: 5px;
padding: 0 5px;
background: $background-color-base;
}
.message[color="e... |
Hide the honeypot field of django.contrib.comments by default in CSS. | #comment-waiting {
line-height: 16px;
}
#comment-waiting img {
vertical-align: middle;
padding: 0 4px 0 10px;
}
#comment-added-message,
#comment-thanks {
padding-left: 10px;
}
.comment-moderated-flag {
font-variant: small-caps;
margin-left: 5px;
} | #comment-waiting {
line-height: 16px;
}
#comment-waiting img {
vertical-align: middle;
padding: 0 4px 0 10px;
}
#comment-added-message,
#comment-thanks {
padding-left: 10px;
}
.comment-moderated-flag {
font-variant: small-caps;
margin-left: 5px;
}
#div_id_honeypot {
/* Hide the honeypot from django.... |
Add css for list items | /* app css stylesheet */
.menu {
list-style: none;
border-bottom: 0.1em solid black;
margin-bottom: 2em;
padding: 0 0 0.5em;
}
.menu:before {
content: "[";
}
.menu:after {
content: "]";
}
.menu > li {
display: inline;
}
.menu > li + li:before {
content: "|";
padding-right: 0.3em;
}
| /* app css stylesheet */
.menu {
list-style: none;
border-bottom: 0.1em solid black;
margin-bottom: 2em;
padding: 0 0 0.5em;
}
.menu:before {
content: "[";
}
.menu:after {
content: "]";
}
.menu > li {
display: inline;
}
.menu > li + li:before {
content: "|";
padding-right: 0.3em;
}
/*ASP TESTING... |
Increase space between resources in production bar | .production-bar {
align-items: center;
background: lightgray;
bottom: 0;
border-top: 1px #8b8b8b solid;
background: linear-gradient(#eaeaea, #888 7%);
box-shadow: 0 0 15px 0 #747474;
display: flex;
height: 3.5rem;
position: fixed;
width: 100vw;
}
.fixed-resources {
margin: a... | .production-bar {
align-items: center;
background: lightgray;
bottom: 0;
border-top: 1px #8b8b8b solid;
background: linear-gradient(#eaeaea, #888 7%);
box-shadow: 0 0 15px 0 #747474;
display: flex;
height: 3.5rem;
position: fixed;
width: 100vw;
}
.fixed-resources {
margin: a... |
Tweak the spacing of the form actions. | /*
This CSS file contains some tweaks specific to the included Bootstrap theme.
It's separate from `style.css` so that it can be easily overridden by replacing
a single block in the template.
*/
.form-actions {
background: transparent;
border-top-color: transparent;
}
.navbar-inverse .brand a {
color:... | /*
This CSS file contains some tweaks specific to the included Bootstrap theme.
It's separate from `style.css` so that it can be easily overridden by replacing
a single block in the template.
*/
.form-actions {
background: transparent;
border-top-color: transparent;
padding-top: 0;
}
.navbar-inverse .... |
Add hover style to news item | .newsitem {
display: flex;
height: 70px;
border-bottom: 1px solid var(--chart-teal);
color: white;
cursor: pointer;
}
.source {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 20%;
padding: 0 5px;
text-align: center;
}
.sou... | .newsitem {
display: flex;
height: 70px;
border-bottom: 1px solid var(--chart-teal);
color: white;
cursor: pointer;
}
.newsitem:hover {
background-color: var(--middle-background-light);
}
.source {
display: flex;
flex-direction: column;
align-items: center;
justify-content: cen... |
Add padding to top of body to compensate for taller navbar | @charset "UTF-8";
/* CSS Document */
/* line height is 20px by default so add 30px top and bottom to equal the new .navbar-brand 80px height */
.navbar-brand {
padding: 0px;
height: 60px;
}
.navbar-brand>img {
height: 100%;
padding: 15px;
width: auto;
}
.nav >li >a {
padding-top: 20px;
padding-bottom:... | @charset "UTF-8";
/* CSS Document */
.body {
padding-top: 60px;
}
/* line height is 20px by default so add 30px top and bottom to equal the new .navbar-brand 80px height */
.navbar-brand {
padding: 0px;
height: 60px;
}
.navbar-brand>img {
height: 100%;
padding: 15px;
width: auto;
}
.nav >li >a {
paddi... |
Correct the IBM Plex Serif weight | html {
color: #333;
font-family: 'IBM Plex Sans',-apple-system,BlinkMacSystemFont,sans-serif;
line-height: 1.5;
}
main {
margin: 0 auto;
max-width: 600px;
padding: 10% 10% 0;
width: 80%;
}
h1 {
color: #4489da;
font-family: 'IBM Plex Serif',-apple-system,BlinkMacSystemFont,serif;
font-size: 3rem;
... | html {
color: #333;
font-family: 'IBM Plex Sans',-apple-system,BlinkMacSystemFont,sans-serif;
line-height: 1.5;
}
main {
margin: 0 auto;
max-width: 600px;
padding: 10% 10% 0;
width: 80%;
}
h1 {
color: #4489da;
font-family: 'IBM Plex Serif',-apple-system,BlinkMacSystemFont,serif;
font-size: 3rem;
... |
Make blockquote border lighter and thinner | html {
font-family: "source-sans-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 38em) {
html {
font-size: 19px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
}
code,
pre {
font-family: "source-cod... | html {
font-family: "source-sans-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 38em) {
html {
font-size: 19px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
}
code,
pre {
font-family: "source-cod... |
Fix Facebook photos in noimg mode | html[hc="delumine-all"],
html[hc="delumine-noimg"],
html[hc="delumine-smart"] {
-webkit-filter: invert() hue-rotate(180deg) brightness(105%) contrast(105%);
}
html[hc*="delumine-smart"] img:not([src$=".png"]):not([src$=".gif"]):not([src$=".PNG"]):not([src$=".GIF"]),
html[hc*="delumine-smart"] [style*=".jpg"], html[h... | html[hc="delumine-all"],
html[hc="delumine-noimg"],
html[hc="delumine-smart"] {
-webkit-filter: invert() hue-rotate(180deg) brightness(105%) contrast(105%);
}
html[hc*="delumine-smart"] img:not([src$=".png"]):not([src$=".gif"]):not([src$=".PNG"]):not([src$=".GIF"]),
html[hc*="delumine-smart"] [style*=".jpg"], html[h... |
Fix position of h2 elem inside flashcard | body {
color: #444;
font: 100% "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
text-align: center;
background: #fff;
}
a {
color: #3599db;
text-decoration: none;
padding-bottom: 20px;
}
h1 {
font-weight: bold;
margin: 0 auto;
}
header h1,
header p {
color: #ff7882;
line-height: 1.4;
text... | body {
color: #444;
font: 100% "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
text-align: center;
background: #fff;
}
a {
color: #3599db;
text-decoration: none;
padding-bottom: 20px;
}
h1 {
font-weight: bold;
margin: 0 auto;
}
header h1,
header p {
color: #ff7882;
line-height: 1.4;
text... |
Decrease margin under post and page | html {
font-family: "source-sans-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 38em) {
html {
font-size: 19px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
}
code,
pre {
font-family: "source-cod... | html {
font-family: "source-sans-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 38em) {
html {
font-size: 19px;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
}
code,
pre {
font-family: "source-cod... |
Fix logo placement margin to left | @import 'colors.css';
/* Importer font-style til Roboto-Light */
@font-face {
font-family: Roboto-Light;
src: url("/static/materialize/font/roboto/Roboto-Light.woff");
}
/* Resize hackerspace-logoen */
.brand-logo img {
width:200px !important;
}
/* "Hackerspace er stengt / åpent */
.door {
width:100%;
display... | @import 'colors.css';
/* Importer font-style til Roboto-Light */
@font-face {
font-family: Roboto-Light;
src: url("/static/materialize/font/roboto/Roboto-Light.woff");
}
/* Resize hackerspace-logoen */
.brand-logo img {
width:200px !important;
}
.brand-logo {
margin-left: 10px;
}
.material-icons {
vertical... |
Add bootstrap styles of "moder-business" theme | /*!
* Start Bootstrap - Modern Business (http://startbootstrap.com/)
* Copyright 2013-2016 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
*/
/* Global Styles */
html,
body {
height: 100%;
}
body {
padding-top: 50px;
}
.img-portfolio {
... | |
Make images and embeds responsive. | .rich-text img {
max-width: 100%;
height: auto;
}
.responsive-object {
position: relative;
}
.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
| |
Fix default chart height when it's empty | .chart rect {
fill: steelblue;
}
.chart {
background: #f0f0f0
} | .chart rect {
fill: steelblue;
}
.chart {
background: #f0f0f0;
height: 20px;
} |
Add color Link and Link Visited | html {
background-color: red;
}
| *{
color:#000080;
background-color: #ffffff ;
}
a {
color: #800080;
}
a:visited {
color: #ff0000;
}
|
Add post date to post summary | .dark-grey h1 a,
.dark-grey h2 a,
.dark-grey h3 a,
.dark-grey h4 a,
.dark-grey h5 a {
color: #ff2e88;
}
.dark-grey h1 a:hover,
.dark-grey h2 a:hover,
.dark-grey h3 a:hover,
.dark-grey h4 a:hover,
.dark-grey h5 a:hover {
color: #fff;
}
.double-slash {
color: #666;
}
.media-heading > small {
color: #999;
}
| .dark-grey h1 a,
.dark-grey h2 a,
.dark-grey h3 a,
.dark-grey h4 a,
.dark-grey h5 a {
color: #ff2e88;
}
.dark-grey h1 a:hover,
.dark-grey h2 a:hover,
.dark-grey h3 a:hover,
.dark-grey h4 a:hover,
.dark-grey h5 a:hover {
color: #fff;
}
.double-slash {
color: #666;
}
.media-heading > small {
color: #666;
}
|
Update Results panel: offset to avoid movement | .results-panel.expandable {
transition: border-top-width 200ms;
}
.results-panel.expandable:not(.expanded) {
border-top-width: 0px;
}
.results-panel .panel-heading {
padding: 14px 22px; /* default has slightly more top padding, this doesn't need that */
}
.results-panel .panel-heading .chevron {
display: flex;
... | .results-panel.expandable {
transition: border-top-width 200ms, top 200ms;
position: relative;
top: 0px;
}
.results-panel.expandable:not(.expanded) {
border-top-width: 0px;
/* offset the removed border-top so that the panel never moves a pixel */
top: 4px;
}
.results-panel .panel-heading {
padding: 14px 2... |
Add css for generated html docs | body
{
font-family:'Palatino Linotype','Book Antiqua',Palatino,FreeSerif,serif;
font-size:15px;
line-height:22px;
color:#252519;
margin:0;
padding:0
}
a
{
color:#444;
font-weight:700;
text-decoration:none
}
a:hover
{
color:blue;
text-decoration:underline
}
p
{
margin:0... | |
Make rating chart less high | #ratingChartWithOptions {
border: 1px solid #ddd;
padding: 2px;
}
#ratingChartWithOptions > div {
width: 100%;
height: 400px;
}
| #ratingChartWithOptions {
border: 1px solid #ddd;
padding: 2px;
}
#ratingChartWithOptions > div {
width: 100%;
height: 300px;
}
|
Change font size of menu | html {
font-family: arial;
}
body {
background-color: lightyellow;
}
h1 {
color: red;
text-align: center;
margin-right: -150px;
}
h2 {
color: blue;
font-size: 12pt;
}
h3 {
text-align: center;
margin-right: -150px;
color: orange;
margin-top: -15px;
}
h4 {
color: purple;
}
#... | html {
font-family: arial;
overflow: hidden;
}
body {
background-color: lightyellow;
}
h1 {
color: red;
text-align: center;
margin-right: -150px;
}
h2 {
color: blue;
font-size: 12pt;
}
h3 {
text-align: center;
margin-right: -150px;
color: orange;
margin-top: -15px;
}
h4 {
... |
Fix border inside profile card | .thumbnail {
overflow: hidden;
padding: 0;
}
.profile_card {
margin-bottom: 1em;
}
.profile_card_info {
overflow: hidden;
}
.profile_heading {
overflow: hidden;
margin-bottom: 0.5em;
background-color: powderblue;
padding: 0.5em;
}
@media only screen and (max-width: 675px) {
.profile_pic {
display: block;... | .thumbnail {
overflow: hidden;
padding: 0;
}
.profile_card {
margin-bottom: 1em;
}
.profile_card_info {
overflow: hidden;
}
.profile_heading {
overflow: hidden;
background-color: powderblue;
padding: 0.5em;
}
@media only screen and (max-width: 675px) {
.profile_pic {
display: block;
float: none;
}
.p... |
Fix conflict hightlight and codemirror | /*
Dracula Theme v1.2.0
https://github.com/zenorocha/dracula-theme
Copyright 2015, All rights reserved
Code licensed under the MIT license
http://zenorocha.mit-license.org
@author Éverton Ribeiro <nuxlli@gmail.com>
@author Zeno Rocha <hi@zenorocha.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: ... | |
Revert "Lower padding for user list; give more space to idea lists" | :global(.basic.segment).index {
:global(.horizontal.list) {
margin-left: 0;
}
margin-top: 0;
margin-bottom: 0;
padding-bottom: 0;
padding-top: 0;
/* user list scrolls horizontally */
width: 100%;
white-space: nowrap;
overflow-x: scroll;
}
@-moz-document url-prefix() {
:global(.basic.segment)... | :global(.basic.segment).index {
:global(.horizontal.list) {
margin-left: 0;
}
margin-top: 0;
margin-bottom: 0;
padding-bottom: 0.5rem;
padding-top: 0;
/* user list scrolls horizontally */
width: 100%;
white-space: nowrap;
overflow-x: scroll;
}
|
Add styling to restrict size of input tags | body {
background-color: #336;
position: relative;
text-align: center;
}
canvas {
background-color: rgba(0, 0, 0, 0);
border: 4px solid #FF4;
border-radius: 12px;
left: 40vw;
margin: 3em;
position: absolute;
}
#actors {
z-index: 2;
}
#board {
background-color: #000;
z-index: 0;
}
#pellets {
z... | body {
background-color: #336;
position: relative;
text-align: center;
}
canvas {
background-color: rgba(0, 0, 0, 0);
border: 4px solid #FF4;
border-radius: 12px;
left: 40vw;
margin: 3em;
position: absolute;
}
input {
max-width: 80%;
}
#actors {
z-index: 2;
}
#board {
background-color: #000;
... |
Remove borders for small screen resolutions | /*
* Author: Pierre-Henry Soria <hello@ph7cms.com>
* Copyright: (c) 2020, Pierre-Henry Soria. All Rights Reserved.
* License: GNU General Public License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
*/
#disclaimer-window {
display: none;
position: absolute;
border-r... | /*
* Author: Pierre-Henry Soria <hello@ph7cms.com>
* Copyright: (c) 2020, Pierre-Henry Soria. All Rights Reserved.
* License: GNU General Public License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
*/
#disclaimer-window {
display: none;
position: absolute;
border-r... |
Add more padding around description. | /* shared styles for the ActionColumn icons */
.x-action-col-cell img {
height: 16px;
width: 16px;
cursor: pointer;
}
.icon-delete {
background-image: url(http://cdn.sencha.com/ext/beta/4.2.0.489/examples/shared/icons/fam/delete.gif) !important;
}
.icon-load {
background-image: url(http://... | /* shared styles for the ActionColumn icons */
.x-action-col-cell img {
height: 16px;
width: 16px;
cursor: pointer;
}
.icon-delete {
background-image:
url(http://cdn.sencha.com/ext/beta/4.2.0.489/examples/shared/icons/fam/delete.gif)
!important;
}
.icon-load {
background-image:
url(http://cdn.sencha.com/ex... |
Add @noflip rules for CSS position classes, for proper RTL alignment | div.tcenter.embedvideo,
div.embedvideo.ev_center {
text-align: center;
}
div.embedvideo.ev_center > .embedvideowrap {
margin-left: auto;
margin-right: auto;
}
div.embedvideo.ev_left {
clear: left;
float: left;
}
div.embedvideo.ev_right {
clear: right;
float: right;
}
div.embedvideo.ev_inline {
display: inl... | div.tcenter.embedvideo,
div.embedvideo.ev_center {
text-align: center;
}
div.embedvideo.ev_center > .embedvideowrap {
margin-left: auto;
margin-right: auto;
}
/* @noflip */
div.embedvideo.ev_left {
clear: left;
float: left;
}
/* @noflip */
div.embedvideo.ev_right {
clear: right;
float: right;
}
div.embedvid... |
Fix Color in the resource component | .container > h1 {
font-weight: bold;
margin-bottom: 1rem;
}
.container {
padding: 1.5rem;
background-color: #ffffff;
border: solid 1px #DDDBDA;
box-shadow: 1px -5px 3px -3px #b0adab7a;
}
.container .resource-list .resource-item {
padding: 1rem 0;
border-top: solid 1px #b5b5b5;
disp... | .container > h1 {
margin-bottom: 1rem;
font-size: 16pt;
font-weight: bold;
}
.container {
padding: 1.5rem;
background-color: #ffffff;
border: solid 1px #DDDBDA;
box-shadow: 1px -5px 3px -3px #b0adab7a;
}
.container .resource-list .resource-item {
padding: 1rem 0;
border-top: solid ... |
Update CSS to Format New Blog Entry | 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;
}
p {
padding-top: 1em;
padding-bottom: 1em;
}
p span {
font-size: ... | 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-... |
Remove main navbar font color override | .siggy-main-navbar {
background: #252525;
padding-top:0px;
}
.siggy-main-navbar li a {
color: #999;
text-decoration: none;
background: #252525;
border-top: 1px solid #373737;
border-bottom: 1px solid #1A1A1A;
padding:10px;
} | .siggy-main-navbar {
background: #252525;
padding-top:0px;
}
.siggy-main-navbar li a {
text-decoration: none;
background: #252525;
border-top: 1px solid #373737;
border-bottom: 1px solid #1A1A1A;
padding:10px;
} |
Remove extra bottom margins from dls | .navbar {
margin-bottom: 0;
}
.search-bar, .search-results {
max-width: 600px;
}
.search-results {
margin: 0 auto;
}
| .navbar {
margin-bottom: 0;
}
.search-bar, .search-results {
max-width: 600px;
}
.search-results {
margin: 0 auto;
}
.search-results dl {
margin-bottom: 0;
}
|
Fix bug: pagination is back | #content-main .changelink,
#content-main .submit-row,
#content-main p,
#historicalreimbursement_form p,
#recent-actions-module {
display: none
}
td.field-value {
white-space: nowrap
}
.required label,
label.required {
color: #666;
font-weight: normal;
}
| #content-main .changelink,
#content-main .submit-row,
#content-main p,
#historicalreimbursement_form p,
#recent-actions-module {
display: none
}
#content-main p {
display: block
}
td.field-value {
white-space: nowrap
}
.required label,
label.required {
color: #666;
font-weight: normal
}
|
Add vertical space around the import data confirmation icon. | #import-from-div {
margin-bottom: 20px;
}
#import-checkboxes > div:not(:first-child) {
-webkit-padding-start: 8px;
margin: 5px 0;
}
#import-throbber {
margin: 4px 10px;
vertical-align: middle;
visibility: hidden;
}
#import-success-header {
font-size: 1.2em;
}
#import-success-image {
text-align: cent... | #import-from-div {
margin-bottom: 20px;
}
#import-checkboxes > div:not(:first-child) {
-webkit-padding-start: 8px;
margin: 5px 0;
}
#import-throbber {
margin: 4px 10px;
vertical-align: middle;
visibility: hidden;
}
#import-success-header {
font-size: 1.2em;
}
#import-success-image {
text-align: cent... |
Adjust btn-link styles in document teaser | .document-teaser .teaser-container:hover {
background-color: var(--main-bg-color-hover);
}
.document-teaser .teaser-container .row {
align-items: center;
}
.document-teaser .short-description {
font-size: .9rem;
}
.document-teaser .teaser-small {
padding: .25rem 1rem !important;
}
.document-teaser .... | .document-teaser .teaser-container:hover {
background-color: var(--main-bg-color-hover);
}
.document-teaser .teaser-container .row {
align-items: center;
}
.document-teaser .short-description {
font-size: .9rem;
}
.document-teaser .teaser-small {
padding: .25rem 1rem !important;
}
.document-teaser .... |
Add super mario example css file | /** Generated by FG **/
@font-face {
font-family: 'Conv_SuperMario256 2';
src: url('fonts/SuperMario256 2.eot');
src: local('☺'), url('fonts/SuperMario256 2.woff') format('woff'), url('fonts/SuperMario256 2.ttf') format('truetype'), url('fonts/SuperMario256 2.svg') format('svg');
font-weight: normal;
font-style: n... | |
Set specific blue colour for cartoon homepage headings | /*
* Author: Pierre-Henry Soria <ph7software@gmail.com>
* Copyright: (c) 2017, Pierre-Henry Soria. All Rights Reserved.
* License: GNU General Public License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
*/
body {
background-color: #DEFEC8;
background-image: none;
} | /*
* Author: Pierre-Henry Soria <ph7software@gmail.com>
* Copyright: (c) 2017, Pierre-Henry Soria. All Rights Reserved.
* License: GNU General Public License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
*/
body {
background-color: #DEFEC8;
background-image: none;
}
h1.... |
Add application-wide CSS for fonts and sizes | /* You can add global styles to this file, and also import other style files */
@import '~@swimlane/ngx-datatable/release/index.css';
@import '~@swimlane/ngx-datatable/release/themes/material.css';
@import '~@swimlane/ngx-datatable/release/assets/icons.css';
| /* You can add global styles to this file, and also import other style files */
@import '~@swimlane/ngx-datatable/release/index.css';
@import '~@swimlane/ngx-datatable/release/themes/material.css';
@import '~@swimlane/ngx-datatable/release/assets/icons.css';
body {
font-family: 'RobotoDraft', 'Roboto', 'Helvetica N... |
Correct the CSS location for the .woff file | /*
General
*/
@font-face {
font-family: "LubalinDemiIBM";
src: url("/static/ibm.woff") format("woff"); }
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
color: #222222; }
h1 {
font-family: "LubalinDemiIBM" !important; }
a {
color: #00649D; }
a :visited {
color: #53049C; }
/*... | /*
General
*/
@font-face {
font-family: "LubalinDemiIBM";
src: url("../static/ibm.woff") format("woff"); }
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
color: #222222; }
h1 {
font-family: "LubalinDemiIBM" !important; }
a {
color: #00649D; }
a :visited {
color: #53049C; }
... |
Set correct font-size for input elements. | /*
* Copyright 2021 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.
*/
:host {
white-space: pre;
overflow: hidden;
display: flex;
}
.prefix {
flex: none;
color: var(--color-primary);
}
.text-prompt-input {
... | /*
* Copyright 2021 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.
*/
:host {
white-space: pre;
overflow: hidden;
display: flex;
}
input {
font-size: 14px;
}
.prefix {
flex: none;
color: var(--color-prim... |
Change responsive headers to max-device-width | {% comment %}
This function adds media a media query background image for .hero
using the given size and image.
Using the replace filter, it changes the filename so that we're
fetching the correct image size.
{% endcomment %}
{% capture jpg %}-{{ include.size }}.jpg{% endcapture %}
{% capture png %}-{{ include.si... | {% comment %}
This function adds media a media query background image for .hero
using the given size and image.
Using the replace filter, it changes the filename so that we're
fetching the correct image size.
{% endcomment %}
{% capture jpg %}-{{ include.size }}.jpg{% endcapture %}
{% capture png %}-{{ include.si... |
Add CSS for Assignment 3.4 | /*Note: There are three different ways to add background colors here.
You can add them using a name (for common names), Hex, or RGB values.
*/
body {
background-color: gray;
margin-top: 5em;
}
#div-1 {
background-color: yellow;
position: static;
height: 5em;
width: 5em;
padding: 5em;
position: inline;... | /*Note: There are three different ways to add background colors here.
You can add them using a name (for common names), Hex, or RGB values.
*/
body {
background-color: gray;
margin-top: 5em;
}
#div-1 {
background-color: yellow;
position: static;
height: 5em;
width: 5em;
padding: 5em;
position: inline;... |
Make the label frames a bit paler (but still contrasted enough) | .backtrace {
max-width: var(--tooltip-detail-max-width);
padding: 0;
margin: 0;
}
.tooltip .backtrace {
overflow: hidden;
}
.backtraceStackFrame {
/* Position */
overflow: hidden;
/* Box */
padding: 0;
margin: 0;
list-style: none;
/* Other */
text-overflow: ellipsis;
white-space: nowrap;
}... | .backtrace {
max-width: var(--tooltip-detail-max-width);
padding: 0;
margin: 0;
}
.tooltip .backtrace {
overflow: hidden;
}
.backtraceStackFrame {
/* Position */
overflow: hidden;
/* Box */
padding: 0;
margin: 0;
list-style: none;
/* Other */
text-overflow: ellipsis;
white-space: nowrap;
}... |
Fix a z-index bug for the navigator. |
#SilverStripeNavigator {
z-index: 32768;
padding-bottom: 4px;
height: auto;
}
#SilverStripeNavigator .holder {
padding: 4px 4px 0 4px;
}
|
#SilverStripeNavigator {
z-index: 32768;
padding-bottom: 4px;
height: auto;
}
#SilverStripeNavigator .holder {
padding: 4px 4px 0 4px;
}
#SilverStripeNavigatorMessage {
z-index: 32768;
}
|
Use css rule "white-space: pre-line" for stuff where new lines matter | body {
padding-top: 60px;
}
small.deleteLink {
font-size: 12px;
} | body {
padding-top: 60px;
}
small.deleteLink {
font-size: 12px;
}
div[name=bodyPlainText] div.well, div[name=rawOutput] div.well, div[name=bodyHTML_Unformatted] div.well {
white-space: pre-line;
} |
Hide messages related to DICOM anonymization and licensing. | div.Header div.HeaderLogo {
background: url('../images/QIBAMidasBanner.png') no-repeat 0% 0%;
height: 155px;
width: 285px;
float: left;
cursor: pointer;
}
div.Header {
background: white;
height: 155px;
}
div.Header div.HeaderContent {
height: 155px;
}
div.HeaderContent div.HeaderSearch {
padding-to... | div.Header div.HeaderLogo {
background: url('../images/QIBAMidasBanner.png') no-repeat 0% 0%;
height: 155px;
width: 285px;
float: left;
cursor: pointer;
}
div.Header {
background: white;
height: 155px;
}
div.Header div.HeaderContent {
height: 155px;
}
div.HeaderContent div.HeaderSearch {
padding-to... |
Add icon to the "Learn more about langpacks" button | /*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Recover the focus ring f... | /*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#simplels-empty-learn {
... |
Update spacing to universal views | html {
background-size: cover;
font-family: 'Montserrat', sans-serif;
background-color: black;
}
h1{
color: white;
font-size: 500%;
margin-right: 60%;
margin-left: auto;
margin-top: 200px;
}
#title {
color: white;
font-size: 500%;
margin-top: 25px;
margin-right: 60%;
margin-... | html {
background-size: cover;
font-family: 'Montserrat', sans-serif;
background-color: black;
}
h1{
color: white;
font-size: 500%;
margin-right: 60%;
margin-top: 200px;
}
#title {
color: white;
font-size: 500%;
margin-top: 25px;
margin-right: 60%;
margin-left: auto;
}
#por... |
Add horizontal divider between posts | body {
margin: 60px auto;
width: 70%;
}
nav ul, footer ul {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
padding: 0px;
list-style: none;
font-weight: bold;
font-size: .9em;
color: red;
}
nav ul li, footer ul li {
display: inline;
margin-right: 20px;
}
a {
text-decoration: ... | body {
margin: 60px auto;
width: 70%;
}
nav ul, footer ul {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
padding: 0px;
list-style: none;
font-weight: bold;
font-size: .9em;
color: red;
}
nav ul li, footer ul li {
display: inline;
margin-right: 20px;
}
a {
text-decoration: ... |
Fix collapsible inspector stylings with new sidebar | .budget-content {
width: var(--toolkit-content-width, 75%) !important; /* default to our widest width */
}
/* new categories style element name - not all users have the new categories at the time this was added! */
section.budget-table-container {
width: var(--toolkit-content-width, 75%) !important; /* default to ... | .budget-content {
width: var(--toolkit-content-width, 75%) !important; /* default to our widest width */
}
/* new categories style element name - not all users have the new categories at the time this was added! */
section.budget-table-container {
width: var(--toolkit-content-width, 75%) !important; /* default to ... |
Make single upload input wider | #singleupload {
width: 120px;
}
#dropzone {
padding: 5px;
border: 1px dotted #999;
vertical-align: center;
text-align: center;
color: #000;
margin-top: auto;
margin-bottom: auto;
font-size: 2em;
background-color: #FFF;
color: #F0F0F0;
}
#dropprompt {
}
.waiting {
... | #singleupload {
width: 300px;
}
#dropzone {
padding: 5px;
border: 1px dotted #999;
vertical-align: center;
text-align: center;
color: #000;
margin-top: auto;
margin-bottom: auto;
font-size: 2em;
background-color: #FFF;
color: #F0F0F0;
}
#dropprompt {
}
.waiting {
... |
Increase width of TOC to avoid crawlbar. | #packages {
position: fixed;
top: 0;
left: 0;
height: 8em;
width: 13em;
}
#toc {
position: fixed;
top: 8em;
left: 0;
bottom: 0;
width: 13em;
}
#content {
position: fixed;
top: 0;
left: 13em;
bottom: 0;
... | #packages {
position: fixed;
top: 0;
left: 0;
height: 8em;
width: 13em;
}
#toc {
position: fixed;
top: 8em;
left: 0;
bottom: 0;
width: 14em;
}
#content {
position: fixed;
top: 0;
left: 14em;
bottom: 0;
... |
Use black circle as bullet point symbol | .root {
display: list-item;
margin-left: 1.1em;
margin-bottom: 0.5em;
list-style-position: outside;
}
.root > * {
display: inline-flex;;
margin: 0;
padding: 0;
line-height: 100%;
}
.bullet {
composes: root;
list-style-type: none;
}
.bullet > * {
@nest &:before {
content: '\2022';
margin... | .root {
display: list-item;
margin-left: 1.1em;
margin-bottom: 0.5em;
list-style-position: outside;
}
.root > * {
display: inline-flex;;
margin: 0;
padding: 0;
line-height: 100%;
}
.bullet {
composes: root;
list-style-type: none;
}
.bullet > * {
@nest &:before {
content: '\25CF';
margin... |
Allow horizontal scrolling of swagger docs on readthedocs. | .rst-content pre.literal-block {
padding: 12px;
font-size: 12px;
}
.swagger-section {
margin-top: 20px;
}
.swagger-section ul {
padding: 0px;
}
.swagger-section .container {
padding: 0px;
width: auto;
}
.swagger-section h2 {
margin: 0px;
}
.rst-content .section .swagger-section ul {
line-height: no... | .rst-content pre.literal-block {
padding: 12px;
font-size: 12px;
}
.swagger-section {
margin-top: 20px;
}
.swagger-section ul {
padding: 0px;
}
.swagger-section .container {
padding: 0px;
width: auto;
}
.swagger-section h2 {
margin: 0px;
}
.rst-content .section .swagger-section ul {
line-height: no... |
Fix footer positioning in Firefox | .input {
width:100%;
display: block;
}
.error-container {
color: red;
}
.output-container, .error-container {
display: none;
}
body,html {
height:100%;
}
body > div.container {
min-height:100%;
padding-bottom: 40px; /* Space for footer */
box-sizing: border-box; /* Makes the padding not to overflow ... | .input {
width:100%;
display: block;
}
.error-container {
color: red;
}
.output-container, .error-container {
display: none;
}
body,html {
height:100%;
}
body > div.container {
height:100%;
padding-bottom: 40px; /* Space for footer */
box-sizing: border-box; /* Makes the padding not to overflow the ... |
Fix mobile layout for preview page | .App {
text-align: left;
width: 960px;
margin: 0 auto;
min-height: 600px;
}
.App-main {
font-size: 20px;
padding: 2.5em 20px;
}
input {
font-size: 20px;
margin-left: 1em;
} | .App {
text-align: left;
max-width: 960px;
margin: 0 auto;
min-height: 600px;
}
.App-main {
font-size: 20px;
padding: 2.5em 20px;
}
input {
font-size: 20px;
margin-left: 1em;
} |
Increase top padding 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... |
Edit account button position fix | .nav-account-row .nav-account-name {
display: flex;
margin-left: -20px;
}
.nav-account-row .nav-account-name button {
order: 1;
}
.nav-account-row .nav-account-name i {
order: 0;
display: inline-block;
visibility: hidden;
margin-right: 0.2em;
}
.nav-account-row .nav-account-name:hover i {
visibility: visible... | .nav-account-row .nav-account-name {
display: flex;
margin-left: -20px;
}
.nav-account-row .nav-account-name .nav-account-name-val {
order: 1;
}
.nav-account-row .nav-account-name i {
order: 0;
display: inline-block;
opacity: 0;
width: 0;
margin-right: 0.2em;
line-height: 1.8em;
-webkit-transition: all .3s ... |
Remove one more wrong symbol | body{
padding-bottom: 20px;
padding-top: 20px;
}
.footer{
padding-top: 20px;
padding-bottom: 20px;
margin-top: 40px;
border-top: 1px solid #eee;
}
.navbar{
margin-bottom: 20px;
}
.language-buttom{
background-color: transparent;
text-decoration: underline;
border: none;
cursor: pointer;
}
/* https://github.c... | body{
padding-bottom: 20px;
padding-top: 20px;
}
.footer{
padding-top: 20px;
padding-bottom: 20px;
margin-top: 40px;
border-top: 1px solid #eee;
}
.navbar{
margin-bottom: 20px;
}
.language-buttom{
background-color: transparent;
text-decoration: underline;
border: none;
cursor: pointer;
}
/* https://github.c... |
Remove extra padding in metadata pane on Windows | row > hbox,
row > vbox
{
margin-top: 0 !important;
margin-bottom: 0 !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
row vbox[fieldname=abstractNote],
row vbox[fieldname=extra]
{
margin-left: 1px;
}
.creator-type-label image {
margin-bottom: 0;
}
row label,
row > vbox[fieldname=abstractNo... | row > hbox,
row > vbox
{
margin-top: 0 !important;
margin-bottom: 0 !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
row vbox[fieldname=abstractNote],
row vbox[fieldname=extra]
{
margin-left: 1px;
}
.creator-type-label image {
margin-bottom: 0;
} |
Add `outline: none` to `button-reset` | /* Reset the default `<button/>` styles */
.rrui__button-reset
{
margin : 0;
padding : 0;
white-space : nowrap;
appearance : none;
border : none;
background : none;
cursor : pointer;
font-size : inherit;
font-family : inherit;
font-weight : inherit;
font-style : inherit;
user-select ... | /* Reset the default `<button/>` styles */
.rrui__button-reset
{
margin : 0;
padding : 0;
white-space : nowrap;
appearance : none;
border : none;
background : none;
cursor : pointer;
font-size : inherit;
font-family : inherit;
font-weight : inherit;
font-style : inherit;
user-select ... |
Allow details and map on edit/show site to be on same again. | #area-show-details {
float: left;
width: 500px;
}
#area-show-map {
float: right;
}
#area-show-comment {
clear: both;
}
#area-edit-details {
float: left;
width: 500px;
}
#area-edit-map {
float: right;
}
#area-edit-comment {
clear: both;
} | #area-show-details {
float: left;
width: 400px;
}
#area-show-map {
float: right;
}
#area-show-comment {
clear: both;
}
#area-edit-details {
float: left;
width: 500px;
}
#area-edit-map {
float: right;
}
#area-edit-comment {
clear: both;
} |
Add some CSS to the item offer table | h1 {
margin-bottom: 1em;
}
.page-content {
padding: 0px 5px;
}
.admin_button_cont {
width: 100%;
margin-bottom: 4px;
}
.itemmanager_itembox {
margin-bottom: 5px;
heigth: 100% !important;
}
.viewitem_thumb {
float: left;
margin: 0.5em 1em 1em 0.5em;
}
| h1 {
margin-bottom: 1em;
}
.page-content {
padding: 0px 5px;
}
.admin_button_cont {
width: 100%;
margin-bottom: 4px;
}
.itemmanager_itembox {
margin-bottom: 5px;
heigth: 100% !important;
}
.viewitem_thumb {
float: left;
margin: 0.5em 1em 1em 0.5em;
}
.viewitem_offers {
width: 300px;
}
.viewitem_... |
Make the total a little nicer… | body {
padding: 0px 5vw;
}
.display {
height: 60vw;
width: 90vw;
border: 2px solid gray;
}
.line {
width: 30vw;
background-color: #eee;
padding: 3px 1em;
}
.heart {
background-color: pink;
}
| body {
padding: 0px 5vw;
}
.display {
height: 60vw;
width: 90vw;
border: 2px solid gray;
}
#chart {
border-radius: 3px;
margin-bottom: 2em;
overflow: hidden;
width: 30vw;
}
.line {
background-color: #eee;
padding: 3px 1em;
}
.heart {
background-color: pink;
}
.total {
background-color: ligh... |
Add extra selector for new toggle | /* stylelint-disable selector-no-attribute */
@import './scrollbars.css';
[data-toggle='spark-message-meet'],
[data-toggle='spark-message-meet'] > div,
[data-toggle='spark-message-meet'] > div > div,
main,
main > div,
main > div > div {
display: flex;
width: 100%;
height: 100%;
overflow: hidden;
flex-direct... | /* stylelint-disable selector-no-attribute */
@import './scrollbars.css';
[data-toggle='ciscospark-message-meet'],
[data-toggle='ciscospark-message-meet'] > div,
[data-toggle='ciscospark-message-meet'] > div > div,
[data-toggle='spark-message-meet'],
[data-toggle='spark-message-meet'] > div,
[data-toggle='spark-messa... |
Fix of CSS border inspired by David's yestrerday tweet | /* EmailBundle */
.col-email-id, .col-email-abtest-sentcount, .col-email-abtest-readcount {
width: 75px;
}
.col-email-actions {
width: 25px;
}
.email-builder .builder-panel .panel-body {
padding: 5px 0;
} | /* EmailBundle */
.col-email-id, .col-email-abtest-sentcount, .col-email-abtest-readcount {
width: 75px;
}
.col-email-actions {
width: 25px;
}
.email-builder .builder-panel .panel-body {
padding: 5px 0;
}
.table-bordered {
border-left: 0;
}
.table-bordered.email-list > thead > tr > th:first-child, .t... |
Add bottom margin to markdown tables. | .pk-section-fixed-height {
overflow-y: auto;
}
*[markdown-to-html] table {
border: 1px solid #ccc;
}
*[markdown-to-html] thead > tr:last-child,
*[markdown-to-html] tbody > tr {
border-bottom: 1px solid #ccc;
}
*[markdown-to-html] th {
background-color: #fcfcfc;
color: #666;
padding: 8px;
text-align: le... | .pk-section-fixed-height {
overflow-y: auto;
}
*[markdown-to-html] table {
border: 1px solid #ccc;
margin-bottom: 12px;
}
*[markdown-to-html] thead > tr:last-child,
*[markdown-to-html] tbody > tr {
border-bottom: 1px solid #ccc;
}
*[markdown-to-html] th {
background-color: #fcfcfc;
color: #666;
padding... |
Change styles in order to try to fix width | @font-face {
font-family: PressStart;
src: url("../fonts/press_start.woff");
}
body {
margin: 0;
background-color: #fff;
font-family: PressStart;
}
.game-wrapper {
color: #FFF;
margin: 0 auto;
margin-top: 25px;
max-height: 600px;
max-width: 800px;
}
| @font-face {
font-family: PressStart;
src: url("../fonts/press_start.woff");
}
body {
margin: 0;
background-color: #fff;
font-family: PressStart;
}
.game-wrapper {
color: #FFF;
margin: 0 auto;
margin-top: 25px;
height: 600px;
max-width: 800px;
}
|
Change font-family to Open Sans | @import 'sanitize.css';
@import 'base.css';
@import 'modules/font-size.css';
@import 'modules/size.css';
@import 'modules/line-height.css';
:root {
--main-color: black;
--fz1: 1rem;
--fz2: 1.25rem;
--fz3: 1.5rem;
--fz4: 2rem;
--fz5: 2.25rem;
--fz6: 2.5rem;
--fz7: 2.75rem;
--fz8: 3rem;... | @import 'sanitize.css';
@import 'base.css';
@import 'modules/font-size.css';
@import 'modules/size.css';
@import 'modules/line-height.css';
:root {
--main-color: black;
--fz1: 1rem;
--fz2: 1.25rem;
--fz3: 1.5rem;
--fz4: 2rem;
--fz5: 2.25rem;
--fz6: 2.5rem;
--fz7: 2.75rem;
--fz8: 3rem;... |
Increase paragraph padding for bases | body {
background-color: wheat;
}
#canvasContainer {
background-color: white;
position:relative;
overflow:auto;
}
#bases {
font-family: monospace;
padding-right: 4px;
width: min-content;
height: fit-content;
white-space: normal;
overflow:auto;
}
#baseConta... | body {
background-color: wheat;
}
#canvasContainer {
background-color: white;
position:relative;
overflow:auto;
}
#bases {
font-family: monospace;
padding-right: 8px;
width: min-content;
height: fit-content;
white-space: normal;
overflow:auto;
}
#baseConta... |
Fix float and display. Add tracer bullets | * {
font-family: 'Lato', Calibri, Arial, sans-serif;
background-color: #47a3da;
color: #fff;
border: 2px;
box-sizing: border-box;
}
container {
width: 90%;
}
body, .main, div, form, header, h1, h2, nav, span {
border: 2px solid #47a3da;
}
label, .first_name {
border: 2px solid #47a3da;
text-trans... | * {
font-family: 'Lato', Calibri, Arial, sans-serif;
background-color: #47a3da;
color: #fff;
border: 2px;
}
container {
width: 90%;
}
.cbp-mc-column {
float: left;
border: 1px solid black;
width: 33%;
}
.cbp-mc-column:nth-child(3) {
background-color: orange;
float: left;
width: 33%;
}
.cbp-mc-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.