Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Set white background in left gutter to have a cleaner look. | :local(.component) {
flex-shrink: 0;
}
:local(.hour) {
text-align: right;
padding: 2px 5px;
}
| :local(.component) {
flex-shrink: 0;
position: relative;
background-color: #fff;
}
:local(.hour) {
text-align: right;
padding: 2px 5px;
}
|
Add forgotten drop shadow for inline images | @import url("common.css");
.answer,
#clipboardContent { border: 1px solid #aaa; padding: 5px; box-sizing: content-box; min-height: 100px; font-size: 17px}
#clipboardContent {display: block; width: 100%; margin: 10px 0;}
#copy {background: #359BB7; border-radius: 5px; color: #fff; padding: 5px 15px; white-space: nowrap... | @import url("common.css");
.answer,
#clipboardContent { border: 1px solid #aaa; padding: 5px; box-sizing: content-box; min-height: 100px; font-size: 17px}
#clipboardContent {display: block; width: 100%; margin: 10px 0;}
#copy {background: #359BB7; border-radius: 5px; color: #fff; padding: 5px 15px; white-space: nowrap... |
Fix chat on xs devices | .mosaic {
position: fixed;
bottom: 0px;
}
.chat-text {
max-width: 800px;
width: 100%;
height: 230px;
background-color: white;
position: fixed;
bottom: 60px;
right: 0px;
font-size: 0.9em;
display: flex;
}
.chat-text .chat-general,
.chat-text .chat-alliance {
height: inherit;
padding-top:2px;
... | .mosaic {
position: fixed;
bottom: 0px;
}
.chat-text {
max-width: 800px;
width: 100%;
height: 230px;
background-color: white;
position: fixed;
bottom: 66px;
right: 0px;
font-size: 0.9em;
display: flex;
}
@media (max-width:575px) {
.chat-text {
bottom: 109px;
}
}
.chat-text .chat-general... |
Change sidebar color of docs | body {
font-size: 20px;
}
code {
font-size: 14px;
}
tt, code {
padding: 4px 5px 1px 5px;
}
| body {
font-size: 20px;
}
code {
font-size: 14px;
}
tt, code {
padding: 4px 5px 1px 5px;
}
@media screen and (max-width: 875px) {
div .sphinxsidebar {
background: #3e4349;
}
}
|
Read and write toggle button styling finished | body {
padding-top: 20px;
padding-bottom: 20px;
}
.navbar {
margin-bottom: 20px;
}
.jumbotron {
padding: 0 !important;
}
.breadcrumbs {
padding: 24px 60px !important;
}
#editor {
margin: 0 60px 24px 60px;
}
.btn-edit {
margin: 10px;
color: #777;
display: inline-block;
}
.btn-edit:hover {
co... | body {
padding-top: 20px;
padding-bottom: 20px;
}
.navbar {
margin-bottom: 20px;
}
.jumbotron {
padding: 0 !important;
padding-bottom: 14px !important;
}
.breadcrumbs {
padding: 14px 60px !important;
}
#editor {
margin: 0 60px 24px 60px;
}
.btn-edit {
margin: 10px;
color: #777;
display: inline-... |
Use new color palette for happier mood | html, body {
height: 100%;
}
body {
background-color: #525252;
font-size: 2.5em;
font-family: 'Open Sans Condensed', sans-serif;
color: #ffffff;
}
body a {
color: #5bb75b;
}
body a:hover {
color: #4cad4c;
}
.floater {
float:left;
height:50%;
margin-bottom:-160px;
}
.containe... | html, body {
height: 100%;
}
body {
background-color: #556270;
font-size: 2.5em;
font-family: 'Open Sans Condensed', sans-serif;
color: #ffffff;
}
body a {
color: #6dbf6d;
}
body a:hover {
color: #5bb75b;
}
.floater {
float:left;
height:50%;
margin-bottom:-160px;
}
.containe... |
Purge de regles non utiliser | .portfolio {
margin-top: 100px;
}
/*css carrousel*/
body {
font-family:Arial;
font-size:12px;
background:#ededed;
}
.example-desc {
margin:3px 0;
padding:5px;
}
#carousel {
height:500px;
position:relative;
clear:both;
... | .portfolio {
margin-top: 100px;
}
/*css carrousel*/
#carousel {
height:500px;
position:relative;
clear:both;
overflow:hidden;
background:#FFF;
}
#carousel img {
visibility:hidden;
cursor:pointer;
height: 500px;
width: 700px;
}
|
Add break-word property for better newlines | .container {
margin-bottom: 30px;
}
.container a:visited {
color: #555;
}
.heading {
margin: 0;
line-height: 1.6em;
word-break: break-all;
}
.description {
margin-top: 15px;
margin-bottom: 0;
word-break: break-all;
}
.footer {
padding-top: 15px;
line-height: 1.5em;
}
.footer... | .container {
margin-bottom: 30px;
}
.container a:visited {
color: #555;
}
.heading {
margin: 0;
line-height: 1.6em;
word-break: break-all;
word-break: break-word;
hyphens: auto;
}
.description {
margin-top: 15px;
margin-bottom: 0;
word-break: break-all;
word-break: break-w... |
Set profile picture to be a big circle | header > div.container > div > div > img {
width: 260px;
border-radius: 38px;
}
section#about div#left p {
text-align: right;
}
| header > div.container > div > div > img {
width: 300px;
border-radius: 150px;
}
section#about div#left p {
text-align: right;
}
|
Fix styling to work with normalize.css | #container {
margin: 10px;
}
#controls {
margin: 10px 0px;
}
#grid td {
background: #fafafa;
border: 1px solid #ccc;
}
#grid td.active {
background: #ffeba4;
}
#grid td i {
width: 18px;
height: 20px;
padding: 1px 2px;
text-align: center;
vertical-align: middle;
}
#output {
... | #container {
margin: 10px;
}
#controls {
margin: 10px 0px;
}
#grid {
border-spacing: 0;
}
#grid td {
background: #fafafa;
border: 1px solid #ccc;
border-top-width: 0;
border-left-width: 0;
}
#grid tr:first-child td {
border-top-width: 1px;
}
#grid td:first-child {
border-left-wi... |
Change background of jumbotron to white | body {
padding-top: 70px;
}
section {
padding-top:70px;
margin-top:-70px;
}
.leader {
padding: inherit 10px;
}
.flex-container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.flex-item {
margin: 10px auto;
} | body {
padding-top: 70px;
}
section {
padding-top:70px;
margin-top:-70px;
}
.leader {
background: #ffffff;
}
.flex-container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.flex-item {
margin: 10px auto;
} |
Make callout marks in code unselectable | .docbook .xref img[src^=images\/callouts\/],
.screen img,
.programlisting img {
width: 1em;
}
.calloutlist img {
width: 1.5em;
}
.prompt {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
| .docbook .xref img[src^=images\/callouts\/],
.screen img,
.programlisting img,
.literallayout img,
.synopsis img {
width: 1em;
}
.calloutlist img {
width: 1.5em;
}
.prompt,
.screen img,
.programlisting img,
.literallayout img,
.synopsis img {
-moz-user-select: none;
-webkit-user-select: none;
-ms-... |
Remove margin from the menu items to properly center |
.ui.secondary.pointing.menu .active.item {
color: #f9f9f9 !important;
font-weight: 500 !important;
border-color: #00ff00 !important;
border-width: medium !important;
font-family: 'Roboto', sans-serif !important;
font-size: 1.2em;
}
.ui.secondary.pointing.menu .item {
color: rgba(128, 128,... |
.ui.secondary.pointing.menu .active.item {
color: #f9f9f9 !important;
font-weight: 500 !important;
border-color: #00ff00 !important;
border-width: medium !important;
font-family: 'Roboto', sans-serif !important;
font-size: 1.2em;
}
.ui.secondary.pointing.menu .item {
color: rgba(128, 128,... |
Remove x axis line on categorical bar charts | /*This file should contain all CSS related to general page layout*/
html, body{
height: 100%;
width: 100%;
margin: 0px;
}
.viz-control{
position:absolute;
z-index:50000;
/*display: none;*/
}
#filter-controls{
right: 10px;
top: 10px;
}
#list-controls{
left: 9px;
bottom: 9px;
}
| /*This file should contain all CSS related to general page layout*/
html, body{
height: 100%;
width: 100%;
margin: 0px;
}
.viz-control{
position:absolute;
z-index:50000;
/*display: none;*/
}
#filter-controls{
right: 10px;
top: 10px;
}
#list-controls{
left: 9px;
bottom: 9px;
}
/*Remove x a... |
Sort indicator arrows for column headings | table.movie-table th{
text-transform: capitalize;
cursor: pointer;
}
table.movie-table th:hover{
text-decoration: underline;
}
table.movie-table td:last-child{
max-width:200px;
min-width:200px;
} | table.movie-table th{
text-transform: capitalize;
cursor: pointer;
position: relative;
padding-right: 23px;
}
table.movie-table th:hover{
background-color: #ccc;
}
table.movie-table th.sort-ascending:after{
content: '';
display: block;
position: absolute;
top: 9px;
right: 6px;
border-style: solid;
border-wi... |
Put vendor prefixes in right order | .leaflet-control-minimap {
border:solid rgba(255, 255, 255, 1.0) 3px;
box-shadow: 0 1px 7px #999;
background: #f8f8f9;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
transition: all .2s;
}
.leaflet-control-minimap a {
background-color: rgba(255, 255, 255, 1.0);... | .leaflet-control-minimap {
border:solid rgba(255, 255, 255, 1.0) 3px;
box-shadow: 0 1px 7px #999;
background: #f8f8f9;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
transition: all .2s;
}
.leaflet-control-minimap a {
background-color: rgba(255, 255, 255, 1.0);... |
Adjust css for name and title? | @import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,100,300);
body {
background-color: #D06D35;
font-family: 'Roboto Slab', serif;
color: #fff;
}
#intro {
position: absolute;
left: 50%;
top: 50;
transform: translate(-50%,-50%)
}
#title {
position: absolute;
left: 50%;
top: 50;... | @import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,100,300);
body {
background-color: #D06D35;
font-family: 'Roboto Slab', serif;
color: #fff;
}
#intro {
position: absolute;
left: 50%;
top: 50;
transform: translate(-50%,-50%)
}
|
Allow selection of text in a text box (but that's it). | /* @copyright: 2013 Single D Software - All Rights Reserved
@summary: Cascading style sheet for the Light Maestro GUI */
* {
-webkit-touch-callout: none !important;
-webkit-user-select: none !important;
}
.ui-focus, .ui-btn:focus {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: no... | /* @copyright: 2013 Single D Software - All Rights Reserved
@summary: Cascading style sheet for the Light Maestro GUI */
* {
-webkit-touch-callout: none !important;
-webkit-user-select: none !important;
}
input[type="text"] {
-webkit-user-select: text !important;
}
.ui-focus, .ui-btn:focus {
-moz-... |
Add a little padding around the milestone table. | .milestone_list {
float:left;
width: 15%;
margin: 1em 0 0 15px;
}
.milestone {
border: #d7d7d7 solid 1px;
margin-bottom: 18px;
}
.milestone h4 {
background: #f7f7f7;
font-weight: bold;
font-size: 12px;
text-align: center;
border-bottom: 1px solid #999;
height: 17px;
mar... | .milestone_list {
float:left;
width: 15%;
margin: 1em 0 0 15px;
}
.milestone {
border: #d7d7d7 solid 1px;
margin-bottom: 18px;
}
.milestone h4 {
background: #f7f7f7;
font-weight: bold;
font-size: 12px;
text-align: center;
border-bottom: 1px solid #999;
height: 17px;
mar... |
Remove top/bottom padding in notification center. | .isNotificationsScrolling {
overflow: hidden;
}
.NotificationsContainer {
position: absolute;
top: 100%;
right: 20px;
z-index: 3;
width: 360px;
padding-bottom: 10px;
overflow: hidden;
background-color: #fff;
border: 1px solid #aaa;
border-top: 0;
}
.NotificationsContainer > .Scrollable {
heigh... | .isNotificationsScrolling {
overflow: hidden;
}
.NotificationsContainer {
position: absolute;
top: 100%;
right: 20px;
z-index: 3;
width: 360px;
padding-bottom: 10px;
overflow: hidden;
background-color: #fff;
border: 1px solid #aaa;
border-top: 0;
}
.NotificationsContainer > .Scrollable {
heigh... |
Update fonts and position text/images. | body {
margin: 0;
background: none transparent;
}
#container {
position: absolute;
top: 0;
left: 0;
width: 1920px;
height: 1080px;
overflow: hidden;
background-image: url("../images/in-game/in-game.png");
}
/** SCORE **/
#blue-score, #red-score {
position: absolute;
margin-... | body {
margin: 0;
background: none transparent;
}
#container {
position: absolute;
top: 0;
left: 0;
width: 1920px;
height: 1080px;
overflow: hidden;
background-image: url("../images/in-game/in-game.png");
}
/** SCORE **/
#score {
position: absolute;
margin-top: 64px;
ma... |
Add margin-top to disqus element | /*All custom styles go here*/
.author {
margin-top: 10%;
}
.author .github-logo {
height: 30px;
}
.author .github-avatar {
height: 150px;
}
| /*All custom styles go here*/
.author {
margin-top: 10%;
}
.author .github-logo {
height: 20px;
}
.author .github-avatar {
height: 150px;
}
#disqus_thread {
margin-top: 10%;
}
|
Fix webkit double scrollbar issue with OS X lion | /** initial setup **/
.nano {
position : relative;
width : 100%;
height : 100%;
overflow : hidden;
}
.nano .content {
position : absolute;
overflow : scroll;
overflow-x : hidden;
top : 0;
right : 0;
bottom : 0;
left : 0;
}
.nano .pane {
backgro... | /** initial setup **/
::-webkit-scrollbar {
-webkit-appearance: none;
}
.nano {
position : relative;
width : 100%;
height : 100%;
overflow : hidden;
}
.nano .content {
position : absolute;
overflow : scroll;
overflow-x : hidden;
top : 0;
right : 0;
bottom ... |
Fix Background height on Work page | .wrapper {
padding-top: 5rem;
padding-bottom: 5rem;
position: relative;
}
| .wrapper {
padding-top: 5rem;
padding-bottom: 5rem;
position: relative;
min-height: 100vh;
box-sizing: border-box;
}
|
Improve the way rule items look when they are being hovered over in the Rule Browser. | #rule-list {
cursor: pointer;
} | #rule-list {
cursor: pointer;
}
.rule-item {
padding: 0.2em;
border-radius: 10px;
}
|
Add page break for the table of content in html | em, strong, code
{
/* Override font-style, otherwise the default font-style will be used.
For example, em will use italic font-style.*/
font-style: normal;
}
p
{
line-height: 130%
}
hr
{
page-break-after: always;
}
h2
{
text-align: center;
} | em, strong, code
{
/* Override font-style, otherwise the default font-style will be used.
For example, em will use italic font-style.*/
font-style: normal;
}
p
{
line-height: 130%
}
hr, div
{
page-break-after: always;
}
h2
{
text-align: center;
} |
Use green for active instead of red. | @import url("../bootstrap/css/bootstrap.min.css");
@import url("./github.css");
html, body { overflow-x: hidden; }
textarea {
width: 100%;
resize: vertical;
}
.gh-generated {
margin: 20px 0;
height: 200px !important;
font-family: monospace;
}
.active { fill: red !important; }
.day { fill: #eeeeee... | @import url("../bootstrap/css/bootstrap.min.css");
@import url("./github.css");
html, body { overflow-x: hidden; }
textarea {
width: 100%;
resize: vertical;
}
.gh-generated {
margin: 20px 0;
height: 200px !important;
font-family: monospace;
}
.active { fill: green !important; }
.day { fill: #eeee... |
Update license header in theme. | /* Menu
----------------------------------*/
.ui-menu {
list-style:none;
padding: 2px;
margin: 0;
display:block;
}
.ui-menu .ui-menu {
margin-top: -3px;
}
.ui-menu .ui-menu-item {
margin:0;
padding: 0;
zoom: 1;
width: 100%;
}
.ui-menu .ui-menu-item a {
text-decoration:none;
display:block;
padding:.2em .4em;... | /*
* jQuery UI Menu @VERSION
*
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*/
.ui-menu {
list-style:none;
padding: 2px;
margin: 0;
display:block;
}
.ui-menu .ui-menu {
margin-top: -3px;
}
.ui-menu .ui-menu-item... |
Use Roboto Mono for code | @import url('./fonts/manrope.css');
@import url('./fonts/roboto-mono.css');
@import url('./fonts/open-sans.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./mobile-nav.css');
@import url('./colors.css');
@import url('./codemirror.css');
@import url('./code.css');
html {
font-size: 18px;... | @import url('./fonts/manrope.css');
@import url('./fonts/roboto-mono.css');
@import url('./fonts/open-sans.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./mobile-nav.css');
@import url('./colors.css');
@import url('./codemirror.css');
@import url('./code.css');
html {
font-size: 18px;... |
Fix vertical centering on large displays | body {
font-family: 'Slabo 27px', serif;
}
a {
color: #00B7FF;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
input[type="text"] {
box-sizing: border-box;
height: 48px;
}
.container {
position: relative;
width: 80%;
max-width: 960px;
margin: 0 auto;
padding: 0... | body {
font-family: 'Slabo 27px', serif;
}
a {
color: #00B7FF;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
input[type="text"] {
box-sizing: border-box;
height: 48px;
}
.container {
position: relative;
max-width: 500px;
margin: 0 auto;
padding: 28px;
}
.btn-t... |
Add missing left alignment CSS. | div.tcenter.embedvideo, div.embedvideo.ev_center {
margin-left: auto;
margin-right: auto;
}
div.embedvideo.ev_right {
clear: right;
float: right;
} | div.tcenter.embedvideo, div.embedvideo.ev_center {
margin-left: auto;
margin-right: auto;
}
div.embedvideo.ev_left {
clear: left;
float: left;
}
div.embedvideo.ev_right {
clear: right;
float: right;
} |
Fix for title not aligned on several lines |
@import "results-template.css";
@import "results-color.css";
@import "results-font.css";
@import "results-animation.css";
/*
CSS for Datafari widgets
*/
@import "widgets/ontology-suggestion-widget.css";
@import "widgets/tab-widget.css";
/*
CSS for Datafari modules
*/
@import "modules/query-elevator-mo... |
@import "results-template.css";
@import "results-color.css";
@import "results-font.css";
@import "results-animation.css";
/*
CSS for Datafari widgets
*/
@import "widgets/ontology-suggestion-widget.css";
@import "widgets/tab-widget.css";
/*
CSS for Datafari modules
*/
@import "modules/query-elevator-mo... |
Add grey background before loading image | .result-img {
height: 200px;
}
#footer {
padding-top: 50px;
}
| .result-img {
height: 200px;
min-width:200px;
background-color: #CCC;
}
#footer {
padding-top: 50px;
}
|
Fix lists in TinyMCE editor | * { margin: 0; padding: 0; font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif; font-size: 100%; font-weight: normal; }
body { margin: 10px; background-color: #ffffff; color: #000000; letter-spacing: 0.08em; line-height: 1.4em; font-size: 90%; }
p { margin-bottom: 15px; }
a { color: #48ba32; }
h1 { font-si... | * { margin: 0; padding: 0; font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif; font-size: 100%; font-weight: normal; }
body { margin: 10px; background-color: #ffffff; color: #000000; letter-spacing: 0.08em; line-height: 1.4em; font-size: 90%; }
p { margin-bottom: 15px; }
a { color: #48ba32; }
h1 { font-si... |
Add social icons styling css file | .social-container {
display: flex;
}
.social-container .social {
width: 50px;
height: 50px;
}
.social-container .social:last-child {
margin-right: 0 !important;
}
.social-container .social a {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.s... | |
Add comment to body padding-bottom | body, html {
background-image: url(images/arch-linux-minimalistic-rainbow.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
overflow: hidden;
margin: 0;
}
body {
height: 100%;
overflow: scroll;
padding-bottom: 20px;
}
a:link ... | body, html {
background-image: url(images/arch-linux-minimalistic-rainbow.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
overflow: hidden;
margin: 0;
}
body {
height: 100%;
overflow: scroll;
padding-bottom: 20px; /* Remove ... |
Set relative min width for loan ID number | .loan-details a {
margin-left: 20px !important;
float: left;
}
.ignore-btn {
color: #772d72;
padding: 0px 2px 0px 2px;
float: right;
}
| .loan-details a {
margin-left: 0px !important;
float: left;
}
.ignore-btn {
color: #772d72;
padding: 0px 2px 0px 2px;
float: right;
}
.loan-parts .company-info {
min-width: 2.6em !important;
} |
Add color to border css | #project1, #project2 {
display: none;
}
.wrap {
margin: auto;
width: 50%;
border: 3px;
padding: 10px;
}
| #project1, #project2 {
display: none;
}
.wrap {
margin: auto;
width: 50%;
border: 3px solid #73AD21;
padding: 10px;
}
|
FIX Adjust width to being 'min' width instead of fixed | .multivaluefieldlist > li { margin-bottom: 4px; width: 250px; }
.multivaluefieldlist > li::after { content: '↕'; cursor: pointer; }
.multivaluefieldlist > li:last-child { margin-bottom: 0; }
.mventryfield { max-width: 200px !important; display: inline; } | .multivaluefieldlist > li { margin-bottom: 4px; min-width: 250px; }
.multivaluefieldlist > li::after { content: '↕'; cursor: pointer; }
.multivaluefieldlist > li:last-child { margin-bottom: 0; }
.mventryfield { max-width: 200px !important; display: inline; } |
Add animation to button press | .btn {
font-size: 1.2rem;
padding: 0.3em 0.5em;
min-width: 3em;
background: hsl(0, 0%, 39%);
color: hsl(0, 0%, 100%);
box-shadow: 0 1px 1px 0 hsl(0, 0%, 0%);
border: 0;
border-radius: 4px;
cursor: pointer;
&:hover {
background: hsl(0, 0%, 31%);
}
}
.btn--green {
... | .btn {
font-size: 1.2rem;
padding: 0.3em 0.5em;
min-width: 3em;
background: hsl(0, 0%, 45%);
color: hsl(0, 0%, 100%);
box-shadow: 0 1px 1px 0 hsl(0, 0%, 0%);
border: 0;
border-radius: 4px;
cursor: pointer;
transition-property: transform, box-shadow;
transition-duration: .1s;
... |
Align nav bar text to the right | html {
background-color: white;
color: black;
}
body {
font-family: Helvetica;
color: black;}
header {
background: white;
color: black;
}
nav ul {
display: inline-block
}
nav li {
text-align: right;
display: inline-block;
color: black;
}
a h1 h3 p hr {
color: black;
}
| html {
background-color: white;
color: black;
}
body {
font-family: Helvetica;
color: black;}
header {
background: white;
color: black;
}
nav ul {
display: inline-block
text-align: right;
}
nav li {
text-align: right;
display: inline-block;
color: black;
}
a h1 h3 p hr {
color: black;
}
|
Fix scrollbar messing up layout | #ex1Slider .slider-selection {
background: #BABABA;
}
.marginupper {
padding-top: 2.5em;
}
.slider {
margin: 2.5em;
}
.panel-margin {
margin-left: 0.5em;
margin-top: 0.5em;
}
.bar rect {
fill: steelblue;
}
.bar text.value {
fill: white;
}
.axis {
shape-rendering: crispEdges;
}
.axis path {
fill... | html {
overflow-y: scroll;
}
#ex1Slider .slider-selection {
background: #BABABA;
}
.marginupper {
padding-top: 2.5em;
}
.slider {
margin: 2.5em;
}
.panel-margin {
margin-left: 0.5em;
margin-top: 0.5em;
}
.bar rect {
fill: steelblue;
}
.bar text.value {
fill: white;
}
.axis {
shape-rendering: cr... |
Update theme version to 1.5.0. | /*
Theme Name: Satus Framework for WordPress
Theme URI: http://satusframework.com/
Description: Satus Framework for WordPress is a minimalist, LESS powered, mobile first responsive theme for developers that uses schema.org rather than microformats and is based off of Satus Framework and Roots Th... | /*
Theme Name: Satus Framework for WordPress
Theme URI: http://satusframework.com/
Description: Satus Framework for WordPress is a minimalist, LESS powered, mobile first responsive theme for developers that uses schema.org rather than microformats and is based off of Satus Framework and Roots Th... |
Add more air around title text | body {
font-family: sans;
}
a {
color: blue;
cursor: pointer;
}
a.disabled {
color: grey;
cursor: inherit;
}
.exhausted {
font-style: italic;
color: grey;
}
.video {
display: inline-block;
width: 320px;
height: 180px;
background-image: url("http://placehold.it/320x180/C40... | body {
font-family: sans;
}
a {
color: blue;
cursor: pointer;
}
a.disabled {
color: grey;
cursor: inherit;
}
.exhausted {
font-style: italic;
color: grey;
}
.video {
display: inline-block;
width: 320px;
height: 180px;
background-image: url("http://placehold.it/320x180/C40... |
Add padding-top and centrally align logo | #logo {
height: 92px;
width: 272px;
background-color: white;
display: block;
margin: auto;
padding-top: 109px;
} | |
Fix margins for pagination controls; and update the alignment for contents in a table cell (middle) | body {
padding-top: 54px;
}
.navbar {
background: #2196F3;
}
.sidebar, .content {
padding: 1.5rem;
}
.sidebar {
border-right: 1px solid #B6B6B6;
bottom: 0px;
left: 0px;
position: fixed;
top: 54px;
}
.controls {
margin-bottom: 1rem;
text-align: right... | body {
padding-top: 54px;
}
.navbar {
background: #2196F3;
}
.sidebar, .content {
padding: 1.5rem;
}
.sidebar {
border-right: 1px solid #B6B6B6;
bottom: 0px;
left: 0px;
position: fixed;
top: 54px;
}
.controls {
margin-bottom: 1rem;
text-align: right... |
Fix the gradient of the swatches. | /* 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/. */
#profiles-list,
#profiler-report {
background: hsl(208,11%,27%);
}
#profiles-list {
min-width: 196px;
}
#gra... | /* 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/. */
#profiles-list,
#profiler-report {
background: hsl(208,11%,27%);
}
#profiles-list {
min-width: 196px;
}
#gra... |
Add styles for the validation text & icon | @import '@teamleader/ui-colors';
@import '@teamleader/ui-utilities';
@import '@teamleader/ui-typography';
.select {
composes: reset-font-smoothing;
font-family: var(--font-family-regular);
font-size: calc(1.4 * var(--unit));
border-color: var(--color-neutral-dark);
max-width: 360px;
}
.dropdown-indicator {
... | @import '@teamleader/ui-colors';
@import '@teamleader/ui-utilities';
@import '@teamleader/ui-typography';
.select {
composes: reset-font-smoothing;
font-family: var(--font-family-regular);
font-size: calc(1.4 * var(--unit));
border-color: var(--color-neutral-dark);
max-width: 360px;
}
.dropdown-indicator {
... |
Make back to basic link blue to match the default link colour - this could be moved into the summon admin gui and out of this css file if it is well received | /* Move badge to deal with advanced text addition to button */
.badgeContainer .badge {
left: 5px !important;
}
/* Move folder to deal with advanced text addition to button */
.site-save_folder {
background-position: 0 -136px !important;
margin-left: 14px !important;
}
/* Move advanced search button to dea... | /* Move badge to deal with advanced text addition to button */
.badgeContainer .badge {
left: 5px !important;
}
/* Move folder to deal with advanced text addition to button */
.site-save_folder {
background-position: 0 -136px !important;
margin-left: 14px !important;
}
/* Move advanced search button to dea... |
Hide print icon when embedded | /*
* Custom overrides for embedded bookreader.
*/
/* Hide some navigation buttons */
#GBtoolbar .label,.pageform,.play,.embed,.two_page_mode,.one_page_mode,
.book_leftmost,.book_rightmost,.book_top,.book_bottom {
display: none;
}
#GBtoolbar .title {
font-size: 0.9em;
}
| /*
* Custom overrides for embedded bookreader.
*/
/* Hide some navigation buttons */
#GBtoolbar .label,.pageform,.play,.embed,.two_page_mode,.one_page_mode,
.book_leftmost,.book_rightmost,.book_top,.book_bottom,.print {
display: none;
}
#GBtoolbar .title {
font-size: 0.9em;
}
|
Set position:absolute on windows to take them out of flow | .windowsill.window {
display: flex;
flex-direction: column;
}
.windowsill.window .body {
flex-grow: 1;
}
.windowsill.window .titlebar {
display: block;
height: 1em;
cursor: move;
}
| .windowsill.window {
display: flex;
flex-direction: column;
position: absolute;
}
.windowsill.window .body {
flex-grow: 1;
}
.windowsill.window .titlebar {
display: block;
height: 1em;
cursor: move;
}
|
Add some css helper classes | .hidden {
display: none;
} | .hidden { display: none; }
.full-width { width: 100%; }
.full-height { height: 100%; }
.scroll {height: 100%;}
|
Convert px to rem in user list item styling | .wrapper::before {
content: "" !important;
}
.picture {
display: inline-block;
height: 75px;
border-radius: 50%;
}
.name {
margin-bottom: 0.4rem;
}
.animated-ellipsis-wrapper {
font-size: 0.45rem;
position: absolute;
top: 2.7rem;
left: 0;
width: 100%;
}
| .wrapper {
&::before {
content: "" !important;
}
.picture {
display: inline-block;
height: 5.35rem;
border-radius: 50%;
}
.name {
margin-bottom: 0.4rem;
}
.animated-ellipsis-wrapper {
font-size: 0.45rem;
position: absolute;
top: 2.7rem;
left: 0;
width: 100%;
}
... |
Allow `pre` to overflow in docs | .exampleOutput {
display: flex;
border: 1px solid rgb(224, 224, 224);
padding: 2rem;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.codeBlock pre {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.example-grid-content {
background: rgb(224, 224, 224);
display: flex;... | .exampleOutput {
display: flex;
border: 1px solid rgb(224, 224, 224);
padding: 2rem;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.codeBlock pre {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
max-height: 250px;
overflow: auto;
}
.example-grid-content {
backgroun... |
Fix modal window padding being different to the action bar's | .light {
background-color: var(--color-white);
color: var(--color-greyDark);
}
.dark {
background-color: var(--color-black);
color: var(--color-white);
}
.body {
padding: var(--size-medium);
border-top-right-radius: 4px;
border-top-left-radius: 4px;
overflow-y: scroll;
max-height: 100vh;
padding: ... | .light {
background-color: var(--color-white);
color: var(--color-greyDark);
}
.dark {
background-color: var(--color-black);
color: var(--color-white);
}
.body {
padding: var(--size-medium);
border-top-right-radius: 4px;
border-top-left-radius: 4px;
overflow-y: scroll;
max-height: 100vh;
padding: ... |
Add more padding to header image on desktop | #header {
background-image: url("../img/SWHacks_landing_bg.png");
background-repeat: repeat;
background-size: contain;
/*max-height: 91vh;*/
min-height: 20vh;
}
#hdr-top {
width: 100%;
}
#hdr-top #hdr-top-left {
float: left;
margin-top: 16px;
margin-left: 16px;
font-size: 18pt;
font-family: "raleway-light... | #header {
background-image: url("../img/SWHacks_landing_bg.png");
background-repeat: repeat;
background-size: contain;
/*max-height: 91vh;*/
min-height: 20vh;
}
#hdr-top {
width: 100%;
}
#hdr-top #hdr-top-left {
float: left;
margin-top: 16px;
margin-left: 16px;
font-size: 18pt;
font-family: "raleway-light... |
Fix problem that the image width overflow preview modal box | .openFullAll {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
overflow: auto;
}
.watermark_grid {
display: block;
position: absolute;
top: 0;
background-repeat: no-repeat;
}
.watermark_grid span {
display: inline-block;
border: 1px dashed rgba(255, 255, 255, .2);
curs... | .openFullAll {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
overflow: auto;
}
.watermark_grid {
display: block;
position: absolute;
top: 0;
background-repeat: no-repeat;
}
.watermark_grid span {
display: inline-block;
border: 1px dashed rgba(255, 255, 255, .2);
curs... |
Set foreground fill to white | svg {
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.gray {
fill: hsl( 0, 0%, 55%);
stroke: hsl( 0, 0%, 35%);
}
| svg {
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
#foreground {
fill: hsl( 0, 0%, 100%);
}
.gray {
fill: hsl( 0, 0%, 55%);
stroke: hsl( 0, 0%, 35%);
}
|
Stop title pushing content down | .slide-title {
float: left;
width:100%;
z-index: 10;
background-color: #80deea;
box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}
.slide-title h1 {
text-align: center;
} | .slide-title {
position: absolute;
top:0;
width:100%;
z-index: 10;
background-color: #80deea;
box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 6px, rgba(0, 0, 0, 0.117647) 0 1px 4px;
}
.slide-title h1 {
text-align: center;
} |
Improve spacing around smaller headings. | .page-container {
margin-top: 21px;
margin-bottom: 21px;
}
.content-column {
padding-left: 45px;
}
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 0;
padding-top: 21px;
}
a.anchorjs-link:active, a.anchorjs-link:hover {
text-decoration: none;
}
nav.affix[data-toggle='toc'] {
margin-top: -60px;
}
#toc {
widt... | .page-container {
margin-top: 21px;
margin-bottom: 21px;
}
.content-column {
padding-left: 45px;
}
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 0;
padding-top: 21px;
}
h4, .h4, h5, .h5, h6, .h6 {
margin-top: 14px;
margin-bottom: 7px;
}
a.anchorjs-link:active, a.anchorjs-link:hover {
text-decoration: none... |
Hide the playlist when "not hover" | #sidebar {
display: flex;
flex-direction: column;
max-height: calc(100vh + -65px);
z-index: 2000;
width: 250px;
overflow: auto;
background-color: #303030;
}
.light #sidebar {
background-color: #111;
}
#sidebar.drag {
box-sizing: border-box;
outline: 2px dashed rgba(255,255,255,0.7);
outline-offset... | #sidebar {
display: flex;
flex-direction: column;
max-height: calc(100vh + -65px);
z-index: 2000;
width: 250px;
overflow: auto;
background-color: #303030;
}
.video + #sidebar{
transition: all .5s;
margin-right: -250px;
}
.video:hover + #sidebar,.video + #sidebar:hover {
margin-right: 0;... |
Fix the full screen background | /*
General
*/
@font-face {
font-family: "LubalinDemiIBM";
src: url("../static/ibm.woff") format("woff"); }
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif !important;
color: #222222; }
h1 {
font-family: "LubalinDemiIBM" !important; }
a {
color: #00649D; }
a :visited {
color: #... | /*
General
*/
@font-face {
font-family: "LubalinDemiIBM";
src: url("../static/ibm.woff") format("woff"); }
body {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif !important;
color: #222222; }
h1 {
font-family: "LubalinDemiIBM" !important; }
a {
color: #00649D; }
a :visited {
color: #... |
Update styling for element description and children | body {
background-color: #F9F5FC;
}
.container {
background-color: #F1EEFA;
border: 0.5em solid #AAF;
box-shadow: 0.25em 0.25em 0.25em #444;
margin: 0 auto;
padding: 2em;
text-align: center;
width: 60em;
}
#element-description {
border: 1px solid #DDA;
}
#tetris-grid {
border: 1px solid #DAA;
}
#t... | body {
background-color: #F9F5FC;
}
.container {
background-color: #F1EEFA;
border: 0.5em solid #AAF;
box-shadow: 0.25em 0.25em 0.25em #444;
margin: 0 auto;
padding: 2em;
text-align: center;
width: 60em;
}
#element-description {
border: 1px solid #DDA;
height: 182px;
padding: 12px;
text-align:... |
Remove content borders on mobile to maximise use of space | /**
* This is just an empty theme.
*/
body {
margin: 0;
}
.signed-out #main {
left: 5px;
}
#sidebar {
bottom: 52px;
}
#footer {
border-radius: 2px;
bottom: 4px;
left: 5px;
width: 210px;
}
#main {
bottom: 4px;
right: 5px;
top: 4px;
}
#chat .unhandled .from {
color: #ddd;
}
#windows .window::before {
... | /**
* This is just an empty theme.
*/
body {
margin: 0;
}
.signed-out #main {
left: 5px;
}
#sidebar {
bottom: 52px;
}
#footer {
border-radius: 2px;
bottom: 4px;
left: 5px;
width: 210px;
}
#main {
bottom: 4px;
right: 5px;
top: 4px;
}
#chat .unhandled .from {
color: #ddd;
}
#windows .window::before {
... |
Add some padding at the bottom | body {
padding-top: 70px;
}
.popover-title .close{
position: relative;
bottom: 3px;
}
.table-hover>tbody>tr:hover {
cursor: pointer;
} | body {
padding-top: 70px;
padding-bottom: 20px;
}
.popover-title .close{
position: relative;
bottom: 3px;
}
.table-hover>tbody>tr:hover {
cursor: pointer;
} |
Add padding and margins, increased h1 font size | body {
color: rgb(0,0,0);
padding: 10px;
font-family: 'Open Sans Condensed', sans-serif;}
a:link {
color: rgb(38,12,240);
text-decoration:none;}
a:visited {
color:rbg(0,0,0);}
h1, h3, h4 {
text-align: center;
color: rgb(245,224,255);
font-family: 'Open Sans Condensed', sans-serif;
paddinng: 10px}
| body {
color: rgb(0,0,0);
padding: 10px;
margin: 8%;
font-family: 'Open Sans Condensed', sans-serif;}
a{
padding-right 3%;
}
a:link {
color: rgb(38,12,240);
text-decoration:none;}
a:visited {
color:rbg(0,0,0);}
h1{
font-size: 3em;
}
h1, h3, h4 {
text-align: center;
color: rgb(245,224,255);
font-famil... |
Add styling to the form section | body {
margin: 10px 10px 10px 10px;
padding: 10px 10px 10px 10px;
border-top-color: #2323aa;
border-top-width: 5px;
border-top-style: double;
font-family: sans-serif;
color: #2323ff;
} | body {
margin: 10px 10px 10px 10px;
padding: 10px 10px 10px 10px;
border-top-color: #2323aa;
border-top-width: 5px;
border-top-style: double;
font-family: sans-serif;
color: #2323ff;
}
.the-form {
color: #334433;
border-bottom-width: 5px;
border-bottom-style: double;
border-bottom-color: #443344;
}
|
Revert "Testing container color change" | body, html {
width: 100%;
font-family: 'Roboto', sans-serif;
overflow-x: hidden;
text-rendering: geometricPrecision;
hyphen: auto;
}
.header {
padding-top: 80px;
text-align: center;
color: #ffffff;
}
.aboutMe{
background: #eee;
color: #111;
background-size: cover;
}
.aboutme h1{
text-align: center;
}
.f... | body, html {
width: 100%;
font-family: 'Roboto', sans-serif;
overflow-x: hidden;
text-rendering: geometricPrecision;
hyphen: auto;
}
.header {
padding-top: 80px;
text-align: center;
color: #ffffff;
}
.aboutMe{
background: #eee;
color: #111;
background-size: cover;
}
.aboutme h1{
text-align: center;
}
.f... |
Revert "Test fix for IOS again." | @font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'), local('MaterialIcons-Regular'), url("../font/material-icons/MaterialIcons-Regular.woff2") format('woff2');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
... | @font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url("../font/material-icons/MaterialIcons-Regular.eot"); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url("../font/material-icons/MaterialIcons-Regular.woff2") format('woff... |
Add window border and menu styling | body {
margin: 0;
overflow: hidden;
}
.desktopical {
height: 100%;
width: 100%;
}
.desktopical.taskbar {
background: cornflowerblue;
}
.windowsill.window {
background: ivory;
}
.windowsill.workspace {
width: 100%;
height: 100%;
background: url(space.png);
background-size: cover;
}
.windowsill.titleb... | body {
margin: 0;
overflow: hidden;
}
.desktopical.desktop {
height: 100%;
width: 100%;
}
.desktopical.taskbar {
background: cornflowerblue;
}
.windowsill.window {
background: ivory;
}
.windowsill.workspace {
width: 100%;
height: 100%;
background: url(space.png);
background-size: cover;
}
.windowsil... |
Fix color of error messages | #menu .nav-list > li > a {
background-repeat : no-repeat;
background-position : left center;
padding-left : 20px;
}
#content {
font-size:0.8em;
}
#auth_login_zone {
max-width:450px;
margin: auto;
}
.jforms-error-list {
margin-left: 0;
background-color: #C43C35;
background-image: -moz-line... | #menu .nav-list > li > a {
background-repeat : no-repeat;
background-position : left center;
padding-left : 20px;
}
#content {
font-size:0.8em;
}
#auth_login_zone {
max-width:450px;
margin: auto;
}
.jforms-error-list {
margin-left: 0;
background-color: #C43C35;
background-image: -moz-line... |
Fix bug with long chapter header. | /* Responsive
-------------------------------------------------- */
/* Desktop large
------------------------- */
@media (min-width: 1200px) {
.sidenav {
width: 258px;
}
.sidenav > li > a {
width: 230px \9; /* Override the previous IE8-9 hack */
}
}
/* Desktop
------------------------- */
@media (min-... | |
Update styling for periodic table | body {
background-color: #F9F5FC;
}
.container {
background-color: #F1EEFA;
border: 0.5em solid #AAF;
box-shadow: 0.25em 0.25em 0.25em #444;
margin: 0 auto;
padding: 2em;
text-align: center;
width: 60em;
}
#tetris-grid {
border: 1px solid #DAA;
}
#tetris-preview {
border: 1px solid #AAD;
vertica... | body {
background-color: #F9F5FC;
}
.container {
background-color: #F1EEFA;
border: 0.5em solid #AAF;
box-shadow: 0.25em 0.25em 0.25em #444;
margin: 0 auto;
padding: 2em;
text-align: center;
width: 60em;
}
#tetris-grid {
border: 1px solid #DAA;
}
#tetris-preview {
border: 1px solid #AAD;
display... |
Remove middle gap in layout when viewed on large screens | .tags ul {
list-style-type: none;
margin-left: 0rem;
padding-left: 0rem;
}
.tags ul li {
display: inline;
padding: 0.1rem 0.3rem;
border: 1px solid #cccccc;
}
.social-media {
margin-top: 2em;
}
.social-media a {
color: #DDDDDD;
}
.social-media a:hover {
color: #FFFFFF;
}
.social-media .sidebar-nav-item {
... | .tags ul {
list-style-type: none;
margin-left: 0rem;
padding-left: 0rem;
}
.tags ul li {
display: inline;
padding: 0.1rem 0.3rem;
border: 1px solid #cccccc;
}
.social-media {
margin-top: 2em;
}
.social-media a {
color: #DDDDDD;
}
.social-media a:hover {
color: #FFFFFF;
}
.social-media .sidebar-nav-item {
... |
Change cursor to "pointer" shape when hovering over attribute-value pairs in LHS. | input.name,
input.description {
margin-top: 20px; /* Equal to margin-top of Bootstrap <h3> */
margin-bottom: 10px; /* Equal to margin-top of Bootstrap <h3> */
}
.bracket {
display: inline-block;
width: 10px;
border-top: 3px solid black;
border-bottom: 3px solid black;
}
.bracket-left {
bor... | input.name,
input.description {
margin-top: 20px; /* Equal to margin-top of Bootstrap <h3> */
margin-bottom: 10px; /* Equal to margin-top of Bootstrap <h3> */
}
.bracket {
display: inline-block;
width: 10px;
border-top: 3px solid black;
border-bottom: 3px solid black;
}
.bracket-left {
bor... |
Remove display block that breaks hiding. | .departure ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
}
.header {
background-color: slategrey;
}
.even {
background-color: lightgrey;
}
.odd {
background-color: ghostwhite;
}
.departure li {
float: left;
display: block;
text-align: left;
text-decoration: none;
}
.... | .departure ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
}
.header {
background-color: slategrey;
}
.even {
background-color: lightgrey;
}
.odd {
background-color: ghostwhite;
}
.departure li {
float: left;
/*display: block;*/
text-align: left;
text-decoration: none;
... |
Fix cliping of color picker when too few notes. | #controls-container {
border-bottom: 1px solid silver;
padding: 10px 0px;
}
/* Note List Styles*/
#content-container {
background-color: #ddd;
background-color: #fff;
background-color: hsl(60, 100%, 98%); /*(240, 100%, 99%);*/
}
.scroll {
overflow-x: none;
overflow-y: auto;
max-height: 100%;
... | #controls-container {
border-bottom: 1px solid silver;
padding: 10px 0px;
}
/* Note List Styles*/
#content-container {
background-color: #ddd;
background-color: #fff;
background-color: hsl(60, 100%, 98%); /*(240, 100%, 99%);*/
}
#notes-container {
height: 100%;
}
.scroll {
overflow-x: none;
o... |
Add min-height and min-width to prevent super small spinner when opening console | .loader {
display: flex;
height: 50vh;
justify-content: center;
align-items: center;
}
:root {
--spinner-Color: #0085a1;
--spinner-Color-front: color(var(--spinner-Color) a(0.8));
--spinner-Color-back: color(var(--spinner-Color) a(0.2));
}
.spinner {
height: 8vh;
width: 8vh;
border: 6px solid var(... | .loader {
display: flex;
height: 50vh;
justify-content: center;
align-items: center;
}
:root {
--spinner-Color: #0085a1;
--spinner-Color-front: color(var(--spinner-Color) a(0.8));
--spinner-Color-back: color(var(--spinner-Color) a(0.2));
}
.spinner {
height: 8vh;
min-height: 5rem;
width: 8vh;
mi... |
Align LinkTool buttons in the center | .sc-edit-link-tool {
display: flex;
}
.sc-edit-link-tool > * {
flex: 0 0 0;
}
.sc-edit-link-tool .sc-input {
height: 24px;
font-size: 11px;
color: white;
min-width: 200px;
font-family: Monaco, 'Courier New';
padding: 5px;
background: transparent;
border: none;
margin: 2px;
}
| .sc-edit-link-tool {
display: flex;
align-items: center;
}
.sc-edit-link-tool > * {
flex: 0 0 0;
}
.sc-edit-link-tool .sc-input {
height: 24px;
font-size: 11px;
color: white;
min-width: 200px;
font-family: Monaco, 'Courier New';
padding: 5px;
background: transparent;
border: none;
margin: 2px;... |
Remove some space from header in low resolutions | h1 a {
text-decoration: none;
color: #333
}
.content {
padding-top: 2em;
}
.pure-button {
line-height: 2em;
margin-bottom: 1em;
}
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.butto... | h1 a {
text-decoration: none;
color: #333
}
.content {
padding-top: 2em;
}
.pure-button {
line-height: 2em;
margin-bottom: 1em;
}
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.butto... |
Add the css classes for the app status code | .status-red {
background-color: #ED2D3A;
color: white;
}
.status-yellow {
background-color: #FFC108;
color: white;
}
.status-green {
background-color: #30A64A;
color: white;
}
| |
Make Crossbrowser transition for .card-hover | body {
font-family: 'Varela Round', sans-serif;
}
/* Card hover tooltips */
.card:not(:hover) .card-hover {
opacity: 0;
transition: opacity 0.4s ease-in;
}
.card .card-hover {
position: absolute;
top: calc(100% + 0.5em);
width: 100%;
padding-left: 0.2em;
padding-right: 0.2em;
border-radius: 0.2em;
background... | body {
font-family: 'Varela Round', sans-serif;
}
/* Card hover tooltips */
.card:not(:hover) .card-hover {
opacity: 0;
-webkit-transition: opacity 0.4s ease-in;
-moz-transition: opacity 0.4s ease-in;
-ms-transition: opacity 0.4s ease-in;
-o-transition: opacity 0.4s ease-in;
transition: opacity 0.4s ease-in;
}
... |
Remove redundant font declaration, adjust print | body {
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1.2em;
max-width: 1024px;
margin: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1,
h2 {
text-align: center;
}
h1 {
margin-bottom: 0;
... | body {
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1.2em;
max-width: 1024px;
margin: auto;
}
h1,
h2 {
text-align: center;
}
h1 {
margin-bottom: 0;
font-weight: bolder;
}
h2,
h5 {
margin: 0;
}
h2 {
font-weight: normal;
}
h3 {
margin: .9em 0 0 0;
f... |
Change colour for bold values | /* Moon theme CSS at the following location:
* https://github.com/gitpitch/gitpitch/blob/master/public/libs/reveal.js/3.4.1/css/theme/moon.css
*/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
text-transform: none;
}
h1 > strong > em {
color: #EA3046;
font-family: "Noteworthy Bold", I... | /* Moon theme CSS at the following location:
* https://github.com/gitpitch/gitpitch/blob/master/public/libs/reveal.js/3.4.1/css/theme/moon.css
*/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
text-transform: none;
}
.reveal h1 > strong {
color: #EA3046;
}
|
Adjust the indent and prettify | /* Google web search tweak */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("https://www.google.com/search") {
.mw #center_col { width: 46em !important; }
.mw #rhs { margin-left: 62em !important; }
.mw #nyc { margin-left: 55em !important; }
.mw .s { max-width: 45em !important; line-height: 1.5... | /* Google web search tweak */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("https://www.google.com/search") {
.mw #center_col { width: 46em !important; }
.mw .s { max-width: 45em !important; line-height: 1.5 !important; }
.mw #rhs { margin-left: 62em !important; }
.mw #nyc { margin-... |
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... |
Make star usual size for first place | .tf__button {
background: none;
border: none;
padding: 0;
margin: 0;
font: inherit;
cursor: pointer;
z-index: 10000;
}
.tf__button:focus {
outline: none;
}
.tf__button:before {
content: '★';
-webkit-text-stroke: 1px black;
margin-left: 0.5em;
}
.tf__button--follow:before {
color: transparent;... | .tf__button {
background: none;
border: none;
padding: 0;
margin: 0;
font: inherit;
cursor: pointer;
z-index: 10000;
}
.tf__button:focus {
outline: none;
}
.tf__button:before {
content: '★';
-webkit-text-stroke: 1px black;
margin-left: 0.5em;
}
.tf__button--follow:before {
color: transparent;... |
Make context menu look nicer | .context-menu {
background-color: rgba(250,250,250,0.8);
border-radius: 4px;
font: 12px sans-serif;
cursor: default;
padding: 3px;
}
.context-menu-item {
padding: 2px
}
.context-menu-item:hover {
background-color: #4677f8;
color: #fefefe;
}
hr {
margin-top: 5px;
margin-bottom:... | .context-menu {
background-color: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
font-size: 12px;
cursor: default;
padding: 3px;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.125), 0 1px 5px 0 rgba(0, 0, 0, 0.075);
}
.context-menu-item {
padding: 2px;
w... |
Increase font size a bit. | .node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node {
font: 10px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
#mp2 {
margin-top: -50px;
}
#mp2 > svg {
display: block;
margin-left: auto;
margin-right: auto;
}
| .node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node {
font: 11px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
#mp2 {
margin-top: -50px;
}
#mp2 > svg {
display: block;
margin-left: auto;
margin-right: auto;
}
|
Set global input and basic button |
body {
background-color: #eee;
}
.wrap {
position: relative;
min-width: 950px;
}
.content {
width: 800px;
margin: 10px auto;
}
|
/***** Global Component *****/
body {
background-color: #eee;
}
:global .input {
padding: 0 8px;
border-style: solid;
border-color: #bfbfbf;
border-width: 1px 1px 2px 1px;
font-size: 14px;
color: #222;
&:focus {
border-color: #2b99d6;
}
&.input--small {
line-h... |
Add some picker layout enhancements | .alfresco-dialog-AlfDialog {
.dialog-body {
.alfresco-forms-Form.root-dialog-form > form {
.alfresco-forms-controls-BaseFormControl.betterInlinePicker {
> .control-row > .control > .alfresco-core-ProcessWidgets > .alfresco-lists-views-AlfListView > table > tbody > tr > td {
... | |
Fix icon margin in sign in page | .login-icon {
padding-top: 100px;
padding-bottom: 20px;
}
.uk-icon-very-large {
font-size: 1000%;
vertical-align: -22%;
} | .login-icon {
padding-top: 80px;
padding-bottom: 20px;
}
.uk-icon-very-large {
font-size: 1000%;
vertical-align: -22%;
} |
Increment line height on titles for Arabic language | /* Bug 958321 */
@font-face {
font-family: X-LocaleSpecific;
font-weight: normal;
src: url('/media/fonts/l10n/DroidNaskh-Regular.eot?#iefix') format('embedded-opentype'),
url('/media/fonts/l10n/DroidNaskh-Regular.woff') format('woff'),
url('/media/fonts/l10n/DroidNaskh-Regular.ttf') format('truetyp... | /* Bug 958321 */
@font-face {
font-family: X-LocaleSpecific;
font-weight: normal;
src: url('/media/fonts/l10n/DroidNaskh-Regular.eot?#iefix') format('embedded-opentype'),
url('/media/fonts/l10n/DroidNaskh-Regular.woff') format('woff'),
url('/media/fonts/l10n/DroidNaskh-Regular.ttf') format('truetyp... |
Tweak the text color in the editor | .editor-container {
height: calc(100vh - 10rem);
}
.transcript-editor {
overflow-y: scroll;
}
.timestamp {
}
#content > .uk-grid {
width: 95vw;
}
| .editor-container {
height: calc(100vh - 10rem);
}
.transcript-editor {
overflow-y: scroll;
}
.timestamp {
}
.ql-editor {
color: rgba(0, 0, 0, 0.8);
font-size: 12pt;
}
#content > .uk-grid {
width: 95vw;
}
|
Add link to css grid layout | /*
* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
* https://www.codementor.io/karaluton/a-beginner-s-guide-to-css-grid-j27g9uqys?utm_swu=7100
*/
body {
display: grid;
grid-template-columns: 70% 30%;
grid-template-areas: "header header"
"main aside"
... | /*
* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
* https://medium.com/@elad/supporting-css-grid-in-internet-explorer-b38669e75d66
* https://www.codementor.io/karaluton/a-beginner-s-guide-to-css-grid-j27g9uqys?utm_swu=7100
*/
body {
display: grid;
grid-template-columns: 70% 30%;
grid-tem... |
Add CSS for small screens | /* LeechBlock options CSS style */
body {
background-color: #fff;
color: #000;
}
hr {
background-color: #888;
color: #888;
border: none;
height: 1px;
}
legend {
font-weight: bold;
}
#form-container {
display: flex;
justify-content: center;
align-items: center;
}
#panes {
display: inline-block;
}
| /* LeechBlock options CSS style */
body {
background-color: #fff;
color: #000;
}
hr {
background-color: #888;
color: #888;
border: none;
height: 1px;
}
legend {
font-weight: bold;
}
#form-container {
display: flex;
justify-content: center;
align-items: center;
}
#panes {
display: inline-block;
}
@media... |
Remove red color on fixed node | /* http://www.w3schools.com/cssref/css_colorsfull.asp */
.video_link {
fill: none;
stroke: #C0C0C0;
stroke-dasharray: 2 4;
stroke-width: 3px;
}
.btn {
min-width: 30px;
}
.svg {
float: left;
/* margin-top: 200px; */
}
.first-rows {
margin-bottom: 15px;
margin-top: 20px;
text-align: center;
}
.graph_image... | /* http://www.w3schools.com/cssref/css_colorsfull.asp */
.video_link {
fill: none;
stroke: #C0C0C0;
stroke-dasharray: 2 4;
stroke-width: 3px;
}
.btn {
min-width: 30px;
}
.svg {
float: left;
/* margin-top: 200px; */
}
.first-rows {
margin-bottom: 15px;
margin-top: 20px;
text-align: center;
}
.graph_image... |
Make sure things are visible | .loginHeaderCube {
margin-top: 15px;
}
textarea {
height: 100%;
width: 100%;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
| body {
padding-top: 65px;
}
.loginHeaderCube {
margin-top: 15px;
}
textarea {
height: 100%;
width: 100%;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */... |
Remove rounded borders on bottom navbar | /* Start remove giant gap on bottom of pages*/
body {
padding-bottom: 0;
}
.navbar {
margin-bottom: 0;
}
/*End remove giant gap on bottom of pages*/
/*Remove time from date because it is irrelevant for us*/
.feed-date {
display: inline-block;
white-space: nowrap;
max-width: 9ch;
overflow: hidden;
vertica... | /* Start remove giant gap on bottom of pages*/
body {
padding-bottom: 0;
}
.navbar {
margin-bottom: 0;
}
/*End remove giant gap on bottom of pages*/
/*Remove rounded borders on bottom navbar*/
.navbar {
border-radius: 0;
}
/*Remove time from date because it is irrelevant for us*/
.feed-date {
display: inline-... |
Make sure the menu doesn't collapse if it happens to get empty | body {
font-family: Optima;
color: #333;
margin: 0;
padding: 0;
}
pre {
overflow: auto;
}
#salutation {
position: absolute;
right: 1em;
z-index: 100;
color: #ccc;
}
div#navigation {
width: 100%;
height: auto;
}
div#navigation ul {
width: 100%;
}
#content h1 {
mar... | body {
font-family: Optima;
color: #333;
margin: 0;
padding: 0;
}
pre {
overflow: auto;
}
#salutation {
position: absolute;
right: 1em;
z-index: 100;
color: #ccc;
}
div#navigation {
width: 100%;
height: auto;
}
div#navigation ul {
width: 100%;
height: 11px;
}
#co... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.