Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Make default subtitles font a little smaller |
/* Background on fullscreen */
.flowplayer.is-fullscreen {
background-color: #000;
}
/* Don't show timeline on mouse-out */
.flowplayer.is-mouseout .fp-timeline {
height: 0px;
border: none;
}
.flowplayer .fp-subtitle.fp-active p {
font-size: 2em;
background: rgba(0, 0, 0, 0.05);
}
.flowplayer .fp-subtitle... |
/* Background on fullscreen */
.flowplayer.is-fullscreen {
background-color: #000;
}
/* Don't show timeline on mouse-out */
.flowplayer.is-mouseout .fp-timeline {
height: 0px;
border: none;
}
.flowplayer .fp-subtitle.fp-active p {
font-size: 1.8em;
background: rgba(0, 0, 0, 0.05);
}
.flowplayer .fp-subtit... |
Make it work better with touch | #renderTarget {
background-image: url(../images/background_layer/time_background2.jpg);
-ms-user-select: none;
user-select: none;
}
| * {
-ms-touch-action: none;
}
#renderTarget {
background-image: url(../images/background_layer/time_background2.jpg);
-ms-user-select: none;
user-select: none;
}
|
Adjust location of landing page text | .landingPage_heroTextContainer {
padding-top: 80px;
background-image: linear-gradient(-134deg, #3023ae 0%, #c96dd8 100%);
height: calc(100vh - $headerHeight - $footerHeight);
text-align: center;
@media screen and (width >= $md-screen) {
height: calc(100vh - $headerHeight - $expandedFooterHeight);
}
}
... | .landingPage_heroTextContainer {
padding-top: calc(50vh - 200px);
background-image: linear-gradient(-134deg, #3023ae 0%, #c96dd8 100%);
height: calc(100vh - $headerHeight - $footerHeight);
text-align: center;
@media screen and (width >= $md-screen) {
height: calc(100vh - $headerHeight - $expandedFooterHe... |
Fix spelling mistakes in comments | @charset "utf-8";
body {
overflow: hidden;
}
/* Preloader */
#preloader {
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color:#fff; /* change if the mask should have another color then white */
z-index:99; /* makes sure it stays on top */
}
#status {
width:200px;
height:200px;
position:abs... | @charset "utf-8";
body {
overflow: hidden;
}
/* Preloader */
#preloader {
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color:#fff; /* change if the mask should be a color other than white */
z-index:99; /* makes sure it stays on top */
}
#status {
width:200px;
height:200px;
position:absol... |
Use 'transparent' keyword in CSS | body {
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
color: #212121;
cursor: default;
font-family: Helvetica, Arial, sans-serif;
margin: 0;
overflow: hidden;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
}
body:not(.hover-d... | body {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
color: #212121;
cursor: default;
font-family: Helvetica, Arial, sans-serif;
margin: 0;
overflow: hidden;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
}
body:not(.hover-dis... |
Return style from test style into default | .info-box-custom {
height: 120px !important;
padding-top: 15px;
}
.icon-custom {
margin-top: -20px !important;
padding-top: 20px !important;
}
.text-large {
font-size: 1.6em !important;
}
#add-post {
display: block;
}
.os-btn-custom {
/*margin-top: -28px;*/
float: right;
}
.os-btn-ico... | .info-box-custom {
height: 120px !important;
padding-top: 15px;
}
.icon-custom {
margin-top: -20px !important;
padding-top: 20px !important;
}
.text-large {
font-size: 1.6em !important;
}
#add-post {
display: none;
}
.os-btn-custom {
/*margin-top: -28px;*/
float: right;
}
.os-btn-icon... |
Remove set width of 200px | .sponsor-logo {
margin-right: 10px;
width: 200px;
float: left;
} | .sponsor-logo {
margin-right: 10px;
float: left;
} |
Add padding on select-seats aside | section.select-seats {
display: flex;
flex-direction: row;
}
div.seat-info div {
border: 1px dotted;
padding: 0.5rem;
}
.theater-seat-map svg {
border: 1px solid grey;
}
.theater-seat-map svg rect.stage {
stroke-width: 1;
fill: none;
stroke: grey;
}
.theater-seat-map svg text.stage-t... | section.select-seats {
display: flex;
flex-direction: row;
}
div.seat-info div {
border: 1px dotted;
padding: 0.5rem;
}
.theater-seat-map svg {
border: 1px solid grey;
}
.theater-seat-map svg rect.stage {
stroke-width: 1;
fill: none;
stroke: grey;
}
.theater-seat-map svg text.stage-t... |
Remove numbers from the list | .floatTOC {
transition: 1s all ease;
display: block;
position: fixed;
top: 0;
left: 0;
border: none;
background: #f6f6f6;
font-size: 0.8em;
width: 10em;
height: 100%;
white-space: nowrap;
overflow: hidden;
}
.floatTOC ul ul {
margin: 0 0 0 1em;
}
.floatTOC:hover {
width: auto;
overflow: auto;
box-shad... | .floatTOC {
transition: 1s all ease;
display: block;
position: fixed;
top: 0;
left: 0;
border: none;
background: #f6f6f6;
font-size: 0.8em;
width: 10em;
height: 100%;
white-space: nowrap;
overflow: hidden;
}
.floatTOC ul ul {
margin: 0 0 0 1em;
}
.floatTOC:hover {
width: auto;
overflow: auto;
box-shad... |
Add CSS to the tooltip. | .environment-title {
color: dimgrey;
margin-bottom: 0;
font-family: "Courier New", sans-serif;
}
| .environment-title {
color: dimgrey;
margin-bottom: 0;
font-family: "Courier New", sans-serif;
}
#tooltip {
width: 10%;
height: 10%;
padding: 1%;
background-color: rgba(240, 240, 240, 0.8);
border: 1px solid black;
text-align: center;
font-family: Roboto, Arial, sans-serif;
font-size: 2vmin;
}
|
Add opacity animations for route transition | .appear-enter {
transition-duration: .7s;
transition-property: opacity;
transition-timing-function: east-out;
opacity: 0;
}
.appear-enter.appear-enter-active {
opacity: 1;
}
.appear-leave {
opacity: 0;
}
| |
Make headings smaller on mobile view | body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Mona... | body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Mona... |
Add alpha-transparent bg for navbar | #disqus_thread a {
text-decoration: underline;
}
.container li a { text-decoration: underline; }
.intro-header {
-webkit-transition: background-image 2s ease-in-out;
-moz-transition: background-image 2s ease-in-out;
-ms-transition: background-image 2s ease-in-out;
-o-transition: background-image 2s ease-in-o... | #disqus_thread a {
text-decoration: underline;
}
.container li a { text-decoration: underline; }
.intro-header {
-webkit-transition: background-image 2s ease-in-out;
-moz-transition: background-image 2s ease-in-out;
-ms-transition: background-image 2s ease-in-out;
-o-transition: background-image 2s ease-in-o... |
Make default object view have overflow so it can scroll | /* Copyright (c) 2013 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.
*/
.default-object-snapshot-view #args {
white-space: pre;
}
.default-object-instance-view #snapshots > * {
display: block;
}
.default-object-v... | /* Copyright (c) 2013 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.
*/
.default-object-snapshot-view #args {
white-space: pre;
}
.default-object-instance-view #snapshots > * {
display: block;
}
.default-object-v... |
Set overflow to hidden on body to prevent scrolling outside of editor. | html {
height: 100%;
width: 100%;
}
body {
margin: 0px;
height: 100%;
width: 100%;
}
#firepad-container {
height: 100%;
width: 100%;
} | html {
height: 100%;
width: 100%;
}
body {
margin: 0px;
height: 100%;
width: 100%;
overflow: hidden;
}
#firepad-container {
height: 100%;
width: 100%;
} |
Set display none for video and music view. | body{
color: white;
background-image: url("../imgs/bg.png");
background-repeat: no-repeat;
background-size: 100%;
background-color: #000;
}
h1 {
color: white;
}
li{
list-style-type: none;
}
#links{
border: 2px solid pink;
}
#center_carousel{
border: 2px solid pink;
background-color: grey;
heigh... | body{
color: white;
background-image: url("../imgs/bg.png");
background-repeat: no-repeat;
background-size: 100%;
background-color: #000;
}
h1 {
color: white;
}
li{
list-style-type: none;
}
#links{
border: 2px solid pink;
}
#center_carousel{
border: 2px solid pink;
background-color: grey;
heigh... |
Add more space bw post and img for mobile | /* TOP SECTION
----------------------------------------*/
.top a {
text-decoration: none;
}
.top button {
margin-top: 1rem;
float: right;
}
.top h1 {
color: #34495e;
}
#logout_button {
margin-top: 1rem;
float: right;
}
/* LOGIN + REGISTER SECTION
----------------------------------------*/
... | /* TOP SECTION
----------------------------------------*/
.top a {
text-decoration: none;
}
.top button {
margin-top: 1rem;
float: right;
}
.top h1 {
color: #34495e;
}
#logout_button {
margin-top: 1rem;
float: right;
}
/* LOGIN + REGISTER SECTION
----------------------------------------*/
... |
Add missing css file for tree view | /* the tree node's style */
.tree-view {
overflow-y: hidden;
}
.tree-view_item {
/* immediate child of .tree-view, for styling convenience */
}
/* style for the children nodes container */
.tree-view_children {
margin-left: 16px;
}
.tree-view_children-collapsed {
height: 0px;
}
.tree-view_... | |
Increase the size of the images. | div.metadata {
color: rgb(119, 119, 119);
font-size: 90%;
}
| div.metadata {
color: rgb(119, 119, 119);
font-size: 90%;
}
#ddgcarousel #in_theaters li.ddgc_item img {
max-height: 100px;
}
|
Add padding to body to give spacing in the navbar. | body {
background-color: #eaf1f1;
font-family: 'Istok Web', sans-serif;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lora', serif;
letter-spacing: 2px;
}
.col-md-4 .card {
min-height: 650px;
margin-bottom: 100px;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
border-... | body {
background-color: #eaf1f1;
font-family: 'Istok Web', sans-serif;
line-height: 1.6;
padding-top: 50px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lora', serif;
letter-spacing: 2px;
}
.card {
min-height: 650px;
margin-bottom: 100px;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75)... |
Increase bottom edge z-index to prevent overlap with overlays | @import "base";
@import "cardstack-card-picker";
@import "cardstack-cards-editor";
:root {
--deep-background: #000;
--normal-background: #292A2C;
--activating-background: #404040;
--active-background: #545454;
--light-background: #737373;
--muted-foreground: #777;
--rising-foreground: #aaa... | @import "base";
@import "cardstack-card-picker";
@import "cardstack-cards-editor";
:root {
--deep-background: #000;
--normal-background: #292A2C;
--activating-background: #404040;
--active-background: #545454;
--light-background: #737373;
--muted-foreground: #777;
--rising-foreground: #aaa... |
Replace four spaces with a tab because this file eventually makes it into css.jspf in the portal and ant format-source complains | .aui-widget {
}
.aui-widget-content {
}
.aui-widget-hd {
}
.aui-widget-bd {
}
.aui-widget-ft {
}
.aui-widget-stacked .aui-widget-shim {
border: 0;
height: 100%;
left: 0;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
/* IE8 */
-ms... | .aui-widget {
}
.aui-widget-content {
}
.aui-widget-hd {
}
.aui-widget-bd {
}
.aui-widget-ft {
}
.aui-widget-stacked .aui-widget-shim {
border: 0;
height: 100%;
left: 0;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
/* IE8 */
-ms-filter: alpha(opacity=0);
/*... |
Add borders to keybindings modal |
.keybindings-modal {
width: 100%;
height: 100%;
display: grid;
grid-template-areas: "title close"
"message message"
"keybindings .";
grid-template-columns: 1fr 2em;
grid-template-rows: 3em 2em 1fr;
}
.keybindings-modal .title {
grid-area: t... |
.keybindings-modal {
width: 100%;
height: 100%;
display: grid;
grid-template-areas: "title close"
"message message"
"keybindings .";
grid-template-columns: 1fr 2em;
grid-template-rows: 3em 2em 1fr;
}
.keybindings-modal .title {
grid-area: t... |
Make the doxygen table color consistent with other documentation. |
#titlearea
{
background-color: #0000ff;
color: #80ff00;
}
table.tutorial {
color: black;
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 5px;
font-size: 95%;
}
div.tutorial {
color: black;
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 50px;
fon... |
#titlearea
{
background-color: #0000ff;
color: #80ff00;
}
table.tutorial {
color: black;
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 5px;
font-size: 95%;
}
div.tutorial {
color: black;
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 50px;
fon... |
Use Fontawesome for icon columns. | table.table-centered td, table.table-centered th {
text-align: center;
} | table.table-centered td, table.table-centered th {
text-align: center;
}
/* Override icons as datatables bakes in glyphicons */
table.dataTable thead th {
position: relative;
background-image: none !important;
}
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.data... |
Decrease team photo names font size. | .team-photos img {
width:120px;
height:120px;
}
| .team-photos img {
width:120px;
height:120px;
}
.team-photos .caption {
color:#333333;
font-size:10pt;
}
|
Fix Layout for IE 11 | .wrapper {
width: 100%;
}
.flex-container-column {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
}
.flex-container-row {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
width: 100%;
}
.flex-column {
flex: 1 0 100px;
width: 100%;
}
.flex-row1 {
flex: 1 0 15%;
display: flex;
align... | .wrapper {
width: 100%;
}
.flex-container-column {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
}
.flex-container-row {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
width: 100%;
}
.flex-column {
flex: 1 0 100px;
width: 100%;
}
.flex-row1 {
flex: 1 0 15%;
display: flex;
align... |
Fix additional margin of closed nested detail summary elements | /* This isn't strictly BassCSS here, but it's the only easy way to render the
* different elements within an annotation body */
.annotation-body pre {
padding: 10px;
margin: 1em 0;
}
.annotation-body details summary {
cursor: pointer;
}
.annotation-body details[open] summary {
margin-bottom: 1em;
}
.annota... | /* This isn't strictly BassCSS here, but it's the only easy way to render the
* different elements within an annotation body */
.annotation-body pre {
padding: 10px;
margin: 1em 0;
}
.annotation-body details > summary {
cursor: pointer;
}
.annotation-body details[open] > summary {
margin-bottom: 1em;
}
.an... |
Add project 3 in css | #project1, #project2 {
display: none;
}
.wrap {
margin: auto;
width: 50%;
border: 3px solid #73AD21;
padding: 70px;
}
img {
display: block;
margin: auto;
width: 100%;
align-self: center;
}
.img-wrap {
margin: auto;
align-self: center;
display: block;
}
| #project1, #project2, #project3 {
display: none;
}
.wrap {
margin: auto;
width: 50%;
border: 3px solid #73AD21;
padding: 70px;
}
img {
display: block;
margin: auto;
width: 100%;
align-self: center;
}
.img-wrap {
margin: auto;
align-self: center;
display: block;
}
|
Fix scrollbars (hide x, scroll y) | .portfolio-item:not(:last-child) {
margin-bottom: 5em;
}
.portfolio-item:hover .portfolio-item-details {
visibility: visible;
opacity: 1;
}
.portfolio-item-links {
text-align: center;
font-weight: bold;
}
.portfolio-item-links a:first-child {
border-right: 1px solid #f8f8f8;
margin-right:... | .portfolio-item:not(:last-child) {
margin-bottom: 5em;
}
.portfolio-item:hover .portfolio-item-details {
visibility: visible;
opacity: 1;
}
.portfolio-item-links {
text-align: center;
font-weight: bold;
}
.portfolio-item-links a:first-child {
border-right: 1px solid #f8f8f8;
margin-right:... |
Add basic styling for section headings | .root {
margin-bottom: 50px;
font-size: 16px;
}
.header {
}
.heading {
}
.anchor {
} | .root {
margin-bottom: 50px;
font-size: 16px;
}
.header {
composes: font from "../../styles/common.css";
margin-bottom: 20px;
font-weight: bold;
}
.heading {
position: relative;
margin: 0 0 6px 0;
font-size: 38px;
font-weight: bold;
}
.anchor {
}
|
Put relocation animation parameters to CSS file. | MRelocatorStyle.Portrait {
vertical-anchor-position: 20mm;
top-no-go-margin: 4.8mm;
bottom-no-go-margin: 4.8mm;
}
MRelocatorStyle.Landscape {
vertical-anchor-position: 4mm;
top-no-go-margin: 4mm;
bottom-no-go-margin: 4mm;
}
MRelocatorStyle.Landscape:physical-keyboard {
vertical-anchor-posi... | MRelocatorStyle {
scroll-easing-curve: inoutquint;
scroll-duration: 350;
}
MRelocatorStyle.Portrait {
vertical-anchor-position: 20mm;
top-no-go-margin: 4.8mm;
bottom-no-go-margin: 4.8mm;
}
MRelocatorStyle.Landscape {
vertical-anchor-position: 4mm;
top-no-go-margin: 4mm;
bottom-no-go-ma... |
Use a softer color for compact events | @import 'app/styles/variables.css';
.compactEvents {
display: flex;
justify-content: space-between;
white-space: nowrap;
width: 100%;
text-align: left;
}
.compactEvents h3 {
margin-bottom: 10px;
padding: 0;
}
.compactEvents a {
color: black;
&:hover {
color: #c0392b;
}
}
.compactLeft,
.comp... | @import 'app/styles/variables.css';
.compactEvents {
display: flex;
justify-content: space-between;
white-space: nowrap;
width: 100%;
text-align: left;
}
.compactEvents h3 {
margin-bottom: 10px;
padding: 0;
}
.compactEvents a {
color: rgba(0, 0, 0, 0.9);
&:hover {
color: #c0392b;
}
}
.compa... |
Adjust size of border around spheres | #game-board {
width: 500px;
margin: 20px auto 0 auto;
background-color: #E288A0;
background-color: rgba(255,255,255,0.5);
border: 7px solid #B71F45;
padding: 20px;
border-radius: 10px;
overflow: hidden;
}
.circle {
border-radius: 50%;
width: 75px;
height: 75px;
border: 1... | #game-board {
width: 400px;
margin: 20px auto 0 auto;
background-color: #E288A0;
background-color: rgba(255,255,255,0.5);
border: 7px solid #B71F45;
padding: 20px;
border-radius: 10px;
overflow: hidden;
}
.circle {
border-radius: 50%;
width: 75px;
height: 75px;
border: 1... |
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;
}
h3 {
text-align: center;
margin-right: -150px;
color: orange;
margin-top: -15px;
}
h4 {
color: purple;
}
#menu {
float: left;... | html {
font-family: arial;
}
body {
background-color: lightyellow;
}
h1 {
color: red;
text-align: center;
margin-right: -150px;
}
h2 {
color: blue;
}
h3 {
text-align: center;
margin-right: -150px;
color: orange;
margin-top: -15px;
}
h4 {
color: purple;
}
#menu {
float: left;... |
Change theme name and description | /*
Theme Name: Roots
Theme URI: http://roots.io/
Description: Roots is a WordPress starter theme based on HTML5 Boilerplate & Bootstrap. <a href="https://github.com/roots/roots/contributors">Contribute on GitHub</a>
Version: 7.0.0.
Author: Ben Word
Author URI: http... | /*
Theme Name: Pith
Theme URI: http://fikstores.com/pith-theme/
Description: Pith is a base to create themes, based on roots.io sass (HTML5 Boilerplate & Bootstrap).
Version: 7.0.0.1
Author: Fik Stores
Author URI: http://fikstores.com/
License: MIT Lice... |
Make lines a bit more visible in pie chart | /* Copyright 2014 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.
*/
.pie-chart .arc-text {
font-size: 8pt;
}
.pie-chart .label {
font-size: 10pt;
}
.pie-chart polyline {
fill: none;
opacity: .3;
stroke: blac... | /* Copyright 2014 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.
*/
.pie-chart .arc-text {
font-size: 8pt;
}
.pie-chart .label {
font-size: 10pt;
}
.pie-chart polyline {
fill: none;
stroke: black;
} |
Add checkmark after selected button | .alternative {
display: flex;
margin: 0.5rem 0;
background: #666a99;
color: #fff;
transition: all 0.3s;
border-radius: 2px;
box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.25) inset,
0 2px 1px 0 rgba(0, 0, 0, 0.2);
composes: border from "css/border.css";
}
.alternative:last-of-type {
margin-bott... | .alternative {
display: flex;
margin: 0.5rem 0;
background: #666a99;
color: #fff;
transition: all 0.3s;
border-radius: 2px;
box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.25) inset,
0 2px 1px 0 rgba(0, 0, 0, 0.2);
composes: border from "css/border.css";
}
.alternative:last-of-type {
margin-bott... |
Add shadow and hover effect to doc thumbnails | @import url("theme.css");
.doc_page {
border: 1px solid #aaa;
}
| @import url("theme.css");
.doc_page {
border: 2px solid #aaa;
-webkit-box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.5);
box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.5);
margin-right: 1em;
}
.doc_page:hover {
border: 2px solid #3399ff;
border-radius... |
Remove the leading zero. According to SonarQube | :host {
display: block;
padding: 0 16px;
}
h2 {
font-size: 20px;
font-weight: 500;
letter-spacing: 0.005em;
margin-bottom: 0;
margin-top: 0.83em;
}
| :host {
display: block;
padding: 0 16px;
}
h2 {
font-size: 20px;
font-weight: 500;
letter-spacing: .005em;
margin-bottom: 0;
margin-top: .83em;
}
|
Fix nom de la regle firepad, par id et non pas par classe contrairement a l'exemple officiel |
#firepad {
width: 640px;
height: 450px;
background-color: #f62; /* dark orange background */
}
/* Note: CodeMirror applies its own styles which can be customized in the same way.
To apply a background to the entire editor, we need to also apply it to CodeMirror. */
.CodeMirror {
background-color: #f62;
}
| |
Add text-shadow to text overlay | .container {
font-size: 5vw;
text-rendering: optimizeLegibility;
}
.char {
animation: color-cycle;
animation-duration: 10s;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@keyframes color-cycle {
0% {color: red;}
16% {color: orange;}
32% {color: yellow;}
49% {color: green;}... | .container {
font-size: 5vw;
text-rendering: optimizeLegibility;
text-shadow: 0px 5px 5px #000;
}
.char {
animation: color-cycle;
animation-duration: 10s;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@keyframes color-cycle {
0% {color: red;}
16% {color: orange;}
32% {colo... |
Add extra margin to input boxes | div.tree-multiselect {
border: 2px solid #D8D8D8;
border-radius: 5px;
}
div.tree-multiselect > div.selected, div.tree-multiselect > div.selections {
display: inline-block;
vertical-align: top;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
padding: 1%;
}
div.tree-... | div.tree-multiselect {
border: 2px solid #D8D8D8;
border-radius: 5px;
}
div.tree-multiselect > div.selected, div.tree-multiselect > div.selections {
display: inline-block;
vertical-align: top;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
padding: 1%;
}
div.tree-... |
Add CSS for the glossary | body
{
max-width: 40em;
padding: 1em;
}
p
{
text-align: justify;
}
code
{
font-family: monospace;
}
pre
{
margin-left: 1em;
font-family: monospace;
}
th
{
text-align: left;
padding-bottom: 0.5em;
}
td
{
padding-right: 2em;
}
.zb_post
{
margin-bottom: 3em;
}
.zb_post_date
{
font-weight: b... | body
{
max-width: 40em;
padding: 1em;
}
p
{
text-align: justify;
}
code
{
font-family: monospace;
}
pre
{
margin-left: 1em;
font-family: monospace;
}
th
{
text-align: left;
padding-bottom: 0.5em;
}
td
{
padding-right: 2em;
}
.zb_post
{
margin-bottom: 3em;
}
.zb_post_date
{
font-weight: b... |
Migrate input, text, number, range, select, store | /* all devices */
.ui-header,.ui-footer
{
max-width:64em !important; /* 1024px / 16px ( default font size) */
margin:0 auto;
}
div.ui-input-text {
padding-right: 0.5em;
}
label.ui-input-text {
display:inline-block;
}
label.ui-input-text.s-inline {
display:inline;
}
label.ui-input-text.s-block ... | |
Make two-column layout for 'about' page | @media screen and (max-width: 480px) {
#gallery li:nth-child(3n) {
clear: left;
}
}
@media screen and (min-width: 480px) {
/*****************************************************
TWO-COLUMN LAYOUT
******************************************************/
#primary {
width: 50%;
float: left;
}
... | @media screen and (max-width: 480px) {
#gallery li:nth-child(3n) {
clear: left;
}
}
@media screen and (min-width: 480px) {
/*****************************************************
TWO-COLUMN LAYOUT
******************************************************/
#primary {
width: 50%;
float: left;
}
... |
Fix faulty blue underline in title | .bordered {
border-style:solid;
border-width:1px;
}
h3 {
margin-bottom: 20px;
}
h1 a {
color: inherit;
}
h1 a:hover {
color: inherit;
text-decoration: none;
}
table#t {
cursor: pointer;
}
table#t td {
padding: 5px 5px 0 5px;
}
| .bordered {
border-style:solid;
border-width:1px;
}
h3 {
margin-bottom: 20px;
}
h1 a {
color: inherit;
}
h1 a:hover {
color: inherit;
text-decoration: none;
}
h1 a:active {
color: inherit;
text-decoration: none;
}
table#t {
cursor: pointer;
}
table#t td {
padding: 5px 5px 0... |
Use min-width instead of width | .emoji {
background-position: center;
/* make sure the background the image is only shown once */
background-repeat: no-repeat;
background-size: contain;
/* move it a bit further down to align it nicer with the text */
vertical-align: middle;
/*
We need to limit the emoji width because it can be multip... | .emoji {
background-position: center;
/* make sure the background the image is only shown once */
background-repeat: no-repeat;
background-size: contain;
/* move it a bit further down to align it nicer with the text */
vertical-align: middle;
/*
We need to limit the emoji width because it can be multip... |
Fix blur blur blur blur... | .base {
position: relative;
width: 100%;
min-height: 20px;
text-align: center;
cursor: zoom-in;
}
.base svg {
position: absolute;
width: 25px;
height: 25px;
padding: 2px;
fill: white;
background-color: rgba(180, 180, 180, 0.5);
border-radius: 4px;
margin-top: 5px;
margin-left: 5px;
z-index: 100;
}
.bas... | .base {
position: relative;
width: 100%;
min-height: 20px;
text-align: center;
cursor: zoom-in;
overflow: hidden;
}
.base svg {
position: absolute;
width: 25px;
height: 25px;
padding: 2px;
fill: white;
background-color: rgba(180, 180, 180, 0.5);
border-radius: 4px;
margin-top: 5px;
margin-left: 5px;
z-... |
Correct incorrect TODO comment in CSS. | /* TODO: Why are there a classes here? */
#mws-border {
height: 640px;
text-align: left;
border: 2px solid;
border-radius: 25px;
background-color: #000000;
margin-top: 10px;
margin-bottom: 10px;
}
#mws-response {
height: 560px;
margin-top: 20px;
overflow-y: auto;
color: #00e500;
font-size: 20px... | /* TODO: Why are there ids here? */
#mws-border {
height: 640px;
text-align: left;
border: 2px solid;
border-radius: 25px;
background-color: #000000;
margin-top: 10px;
margin-bottom: 10px;
}
#mws-response {
height: 560px;
margin-top: 20px;
overflow-y: auto;
color: #00e500;
font-size: 20px;
fo... |
Remove ff double loading prevention hack | @font-face {
font-family: 'text-security';
src: url('text-security-compat.eot');
/*
Hack to prevent Firefox from loading the compatibility fonts.
Without this, ff will download both compatibility and optimized fonts
even though only the optimized version is needed. Bug in ff?
*/
font-style: oblique;
... | @font-face {
font-family: 'text-security';
src: url('text-security-compat.eot');
src: url('text-security-compat.eot?#iefix') format('embedded-opentype'),
url('text-security-compat.woff2') format('woff2'),
url('text-security-compat.ttf') format('truetype');
}
/*
Browser detection hack to enable the ... |
Fix styling of vertical filter selector buttons in response to changes in djangocms-admin-style | /************************/
/* Stacked filter boxes */
/************************/
form .field-publications select[multiple] {
height: 200px !important; /* Need to override '!important' in 'djangocms-admin.css' */
max-width: 100%;
}
.field-publications .stacked {
width: 90%;
}
.field-publications .stacked .selec... | /************************/
/* Stacked filter boxes */
/************************/
form .field-publications select[multiple] {
height: 200px !important; /* Need to override '!important' in 'djangocms-admin.css' */
max-width: 100%;
}
.field-publications .stacked {
width: 90%;
}
.field-publications .stacked .selec... |
Use a light gray for completed tasks | /*
* 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... |
Expand cards to contain existing over-limit project names | .ProjectCard-root {
background-color: white;
border: solid 1px #868e96;
color: inherit;
display: inline-table;
margin-right: 20px;
margin-top: 20px;
margin-bottom: 30px;
width: 200px;
}
.ProjectCard-root > div.borderbottom {
padding: 5px;
border-bottom: solid 1px;
}
.ProjectCard-description {
w... | .ProjectCard-root {
background-color: white;
border: solid 1px #868e96;
color: inherit;
display: inline-table;
margin-right: 20px;
margin-top: 20px;
margin-bottom: 30px;
width: 250px;
}
.ProjectCard-root > div.borderbottom {
padding: 5px;
border-bottom: solid 1px;
}
.ProjectCard-description {
w... |
Make mobile menu same color as dt | .MainNavigation {
font-size: 1.2rem;
position: relative;
font-weight: 600;
&__list {
padding: 0;
margin: 0;
list-style: none;
}
&--mobile {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
background-color: #000000;
padding: 0.3rem 0.5rem;
font-size: 1.2rem;
box-s... | .MainNavigation {
font-size: 1.2rem;
position: relative;
font-weight: 600;
&__list {
padding: 0;
margin: 0;
list-style: none;
}
&--mobile {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
background-color: rgb(26, 24, 24);
padding: 0.3rem 0.5rem;
font-size: 1.2rem;
... |
Add margin to twitter icon | .panel-body {
word-break: break-word;
}
#markdown {
font-size: 75%;
}
#centered {
text-align: center;
}
#twitter-button {
margin-top:15px;
margin-left:10px;
}
body { padding-top: 70px; }
| .panel-body {
word-break: break-word;
}
#markdown {
font-size: 75%;
}
#centered {
text-align: center;
}
#twitter-button {
margin-top:15px;
margin-left:10px;
margin-right:10px;
}
body { padding-top: 50px; }
|
Set background opacity for cluster counters | /* General */
body {
padding:0;
margin:0;
}
html, body, #map {
height:100%;
width:100%;
}
/* Control elements */
.zoomposition{
font-size:25px;
}
/* Markers */
.leaflet-popup-content{
text-align:center;
}
.icon{
position: relative;
width: 28px;
height: 28px;
}
.count{
positi... | /* General */
body {
padding:0;
margin:0;
}
html, body, #map {
height:100%;
width:100%;
}
/* Control elements */
.zoomposition{
font-size:25px;
}
/* Markers */
.leaflet-popup-content{
text-align:center;
}
.icon{
position: relative;
width: 28px;
height: 28px;
}
.count{
positi... |
Update css to make images uniform | @import url(https://fonts.googleapis.com/css?family=Open+Sans);
body{
background: #2ecc71;
padding: 36px;
font-family: 'Open Sans', sans-serif;
}
input[type="text"]:focus {
outline: none;
}
.statusInput input[type="text"] {
font-size: 36px;
background: transparent;
border: none !important;
width: ... | @import url(https://fonts.googleapis.com/css?family=Open+Sans);
body{
background: #2ecc71;
padding: 36px;
font-family: 'Open Sans', sans-serif;
}
input[type="text"]:focus {
outline: none;
}
.statusInput input[type="text"] {
font-size: 36px;
background: transparent;
border: none !important;
width: ... |
Fix scrolling of preview pane contents | :host {
@apply border-0 border-l border-solid p-4 flex-grow overflow-y-auto;
flex-basis: 50%;
border-color: var(--color-neutral-300);
}
| :host {
@apply overflow-y-auto h-full w-full block;
border-color: var(--color-neutral-300);
}
|
Add a new default 'none' value for pointer-events to allow the event to go "through" the element and target whatever is "underneath" that element instead | body {
background-color: #000;
color: #fff;
/* Allow mouse dragging. */
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
user-select: none;
/* disable touch panning/zooming */
-ms-touch-action: none;
touch-action: none;
/*... | body {
background-color: #000;
color: #fff;
/* Allow mouse dragging. */
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
user-select: none;
/* disable touch panning/zooming */
-ms-touch-action: none;
touch-action: none;
/*... |
Reduce table and button padding | body {
font-size: 13px;
white-space: nowrap;
}
a,
a:link {
color: inherit;
text-decoration: none;
transition: color 250ms;
-webkit-transition: color 250ms;
}
a:hover,
a:active {
color: #717171;
}
.ui.table th,
.ui.table td {
text-align: center;
}
i.gray.icon {
color: #a6a6a6 !important;
}
i.brigh... | body {
font-size: 13px;
white-space: nowrap;
}
a,
a:link {
color: inherit;
text-decoration: none;
transition: color 250ms;
-webkit-transition: color 250ms;
}
a:hover,
a:active {
color: #717171;
}
.ui.table th,
.ui.table td,
.ui.table thead th {
text-align: center;
}
.ui.table td {
padding: .5em;
}... |
Remove line numbers from syntax highlighted code blocks | /* TODO: Add @stencila/components as a dependency and import from there */
@import 'https://unpkg.com/@stencila/components@0.2.0/dist/stencila-components-styles.css';
@import 'normalize.css';
@import 'prismjs/plugins/line-highlight/prism-line-highlight.css';
@import 'prismjs/plugins/line-numbers/prism-line-numbers.css'... | /* TODO: Add @stencila/components as a dependency and import from there */
@import 'https://unpkg.com/@stencila/components@0.2.0/dist/stencila-components-styles.css';
@import 'normalize.css';
@import 'prismjs/plugins/line-highlight/prism-line-highlight.css';
/* NOTE: Add the following line to a theme stylesheet to enab... |
Fix layout for landscape mode | body {
margin: 0;
}
.mainContainer {
width: 100%;
height: 100vh;
}
.joystick {
text-align: center;
position: relative;
}
.moveJoystick {
background-color: lightblue;
}
.rotationJoystick {
background-color: lightcoral;
}
@media screen and (orientation:landscape) {
.moveJoystick {
... | body {
margin: 0;
}
.mainContainer {
width: 100%;
height: 100vh;
}
.joystick {
text-align: center;
position: relative;
}
.moveJoystick {
background-color: lightblue;
}
.rotationJoystick {
background-color: lightcoral;
}
@media screen and (orientation:landscape) {
.moveJoystick {
... |
Stop using crappy digital color meter mode | /* General */
a {
color: #1a80f7;
}
a:hover, a:focus {
color: #166dd2;
}
/* Masthead stuff */
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
background-color: #1a80f7;
}
/* Project leader stuff */
.leader-name {
display: inline-block;
margin-top: 0;
... | /* General */
a {
color: #257dff;
}
a:hover, a:focus {
color: #1f6ad9;
}
/* Masthead stuff */
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
background-color: #257dff;
}
/* Project leader stuff */
.leader-name {
display: inline-block;
margin-top: 0;
... |
Add button styling so only font-awesome icon visible, not button outline. |
.node-outline {
border: 2px solid #333333;
}
.load-nodes {
font-size: 2em;
}
|
.node-outline {
border: 2px solid #333333;
}
button {
-webkit-appearance: none;
outline: none;
border: 0;
background: transparent;
}
.load-nodes {
font-size: 2em;
}
|
Correct css for column 'group' | .openerp .oe_form_sheet_width {
max-width: 1000px;
} | .openerp .oe_form_sheet_width {
max-width: 1000px;
}
.openerp .oe_list_group_name {
max-width: 50px;
}
|
Set `touch-action: none` on the canvas. | body {
margin: 0;
width: 100%;
height: 100%;
background-color: #aaf;
}
#content {
margin: 1em auto;
max-width: 100ex;
width: 100%;
background-color: white;
color: black;
}
#plane {
border: 2px solid red;
width: 50ex;
height: 50ex;
background-color: white;
float: left;
margin: 1ex;
}
#funct... | body {
margin: 0;
width: 100%;
height: 100%;
background-color: #aaf;
}
#content {
margin: 1em auto;
max-width: 100ex;
width: 100%;
background-color: white;
color: black;
}
#plane {
border: 2px solid red;
width: 50ex;
height: 50ex;
background-color: white;
float: left;
margin: 1ex;
touch-... |
Add background-color to labels when mouse hovers over them. | body, h1, h2, h3, p, li, span {
font-family: Ubuntu, Arial, Helvetica, sans-serif;
color: white;
font-size: 150%;
}
body {
height: 98%;
background-size: cover;
}
html {
background-color: black;
height: 100%;
}
input[type='checkbox'], input[type='radio'], button, select {
transform: sc... | body, h1, h2, h3, p, li, span {
font-family: Ubuntu, Arial, Helvetica, sans-serif;
color: white;
font-size: 150%;
}
body {
height: 98%;
background-size: cover;
}
html {
background-color: black;
height: 100%;
}
input[type='checkbox'], input[type='radio'], button, select {
transform: sc... |
Add default font on body | /* CSS RESET */
* {
margin:0;
padding:0;
list-style:none;
vertical-align:baseline;
}
/* END CSS RESET */
h1 {
font-family: 'Open Sans', sans-serif;
}
| /* CSS RESET */
* {
margin:0;
padding:0;
list-style:none;
vertical-align:baseline;
-webkit-font-smoothing: antialiased;
}
/* END CSS RESET */
body {
font-family: 'Open Sans', sans-serif;
}
h1 {
font-family: 'Open Sans', sans-serif;
}
|
Add name text to index page |
body {
font-family: Helvetica;
color: white;
}
nav ul li {
margin: 0;
paddin: 0;
overflow: hidden;
display: inline;
color: white;
float; right;
}
a h1 p {
color:black;
}
h3 {
color:black;
font-size: 200%;
}
/* Change the link color to black on hover */
a:hover {
bac... |
body {
font-family: Helvetica;
color: white;
}
nav ul li {
color: black;
display: inline;
float:right;
}
a h1 p {
color: black;
}
h3 {
color:black;
font-size: 200%;
}
.active {
background-color: grey;
color: black;
}
|
Fix Bekk logo in footer | @import 'app/styles/variables.css';
.footer {
width: 100%;
background-color: #1b1a1a;
color: white;
margin-top: 50px;
display: flex;
@media (--lego-max-width) {
margin-top: 0;
}
}
.footer h2 {
margin-top: 0;
text-transform: uppercase;
font-size: 20px;
}
.footerContent {
composes: container... | @import 'app/styles/variables.css';
.footer {
width: 100%;
background-color: #1b1a1a;
color: white;
margin-top: 50px;
display: flex;
@media (--lego-max-width) {
margin-top: 0;
}
}
.footer h2 {
margin-top: 0;
text-transform: uppercase;
font-size: 20px;
}
.footerContent {
composes: container... |
Change styles for super feature | :root {
/*main colors*/
--text-color: #fff;
/*main colors*/
--offset: 15px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@import url('https://fonts.googleapis.com/css?family=Raleway:400');
html {
height: 100%;
}
body {
font-family: 'Raleway', sans-serif;
color: var(--text-color);
background: #... | :root {
/*main colors*/
--text-color: #fff;
/*main colors*/
--offset: 15px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@import url('https://fonts.googleapis.com/css?family=Raleway:400');
html {
height: 100%;
}
body {
font-family: 'Raleway', sans-serif;
color: var(--text-color);
background: #... |
Correct image issue causing images to show massive. | .card-bottom-border {
border-bottom: 1px solid #EDEDED;
} | .card-bottom-border {
border-bottom: 1px solid #EDEDED;
}
.card-img-top{
width: 100%;
height: auto;
} |
Increase border-radius of idea groups | @import '../../../css/colors.css';
.wrapper {
padding: 1rem;
border: 1px solid var(--semantic-dark-grey);
border-radius: 3px;
margin-bottom: 1rem;
display: flex;
flex-direction: column;
.label-input-wrapper {
align-self: center;
input {
text-align: center;
}
}
.list {
list-s... | @import '../../../css/colors.css';
.wrapper {
padding: 1rem;
border: 1px solid var(--semantic-dark-grey);
border-radius: 5px;
margin-bottom: 1rem;
display: flex;
flex-direction: column;
.label-input-wrapper {
align-self: center;
input {
text-align: center;
}
}
.list {
list-s... |
Hide scrollbar track when in small editor | #TextMap {
background: white;
}
.tm-w-default {
font-family: "Vera Mono", "Tahoma", sans-serif;
font-size: 12px;
line-height: 1.3em;
color: black;
}
::selection {
background: rgba(0, 133, 255, 0.32);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.35);... | #TextMap {
background: white;
}
.tm-w-default {
font-family: "Vera Mono", "Tahoma", sans-serif;
font-size: 12px;
line-height: 1.3em;
color: black;
}
::selection {
background: rgba(0, 133, 255, 0.32);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.35);... |
Add a light blue highlight class for some words | .reveal blockquote {
width: 85%;
}
.reveal a {
color: orange;
}
| .reveal blockquote {
width: 85%;
}
.reveal a {
color: orange;
}
.highlight {
color: lightblue;
}
|
Correct css selector on link hover | .home-view-message {
margin: 70px 0 20px;
font-weight: 300;
font-size: 50px;
}
.home-view-welcome {
font-weight: 300;
font-size: 20px;
/*color: rgb(130, 130, 140);*/
margin-bottom: 45px;
}
.home-view-instruction {
font-weight: 300;
font-size: 16px;
margin: 10px 0;
color: black;
}
.instruction-h... | .home-view-message {
margin: 70px 0 20px;
font-weight: 300;
font-size: 50px;
}
.home-view-welcome {
font-weight: 300;
font-size: 20px;
/*color: rgb(130, 130, 140);*/
margin-bottom: 45px;
}
.home-view-instruction {
font-weight: 300;
font-size: 16px;
margin: 10px 0;
color: black;
}
.home-view-ins... |
Fix select inputs height with attribute `multiple` | .form-horizontal .form-group {
margin-bottom: 5px;
}
.form-control:not(textarea, input[type="tel"], input[name*="daterangepicker"]),
.select2-container--default .select2-selection--single {
height: 30px !important;
padding: 5px 10px !important;
font-size: 12px;
line-height: 1.5;
border-radius: ... | .form-horizontal .form-group {
margin-bottom: 5px;
}
.form-control:not(textarea, input[type="tel"], input[name*="daterangepicker"], select[multiple]),
.select2-container--default .select2-selection--single {
height: 30px !important;
padding: 5px 10px !important;
font-size: 12px;
line-height: 1.5;
... |
Update system font stack to latest Bass | /* The old font we use, only has semi-bold at 600 (not 500 like SF UI does) */
.semi-bold {
font-weight: 600;
}
body.new-nav,
body.new-nav h1,
body.new-nav h2,
body.new-nav h3,
body.new-nav h4,
body.new-nav h5,
body.new-nav input,
body.new-nav select,
body.new-nav textarea,
body.new-nav button {
font-family: "SF U... | /* The old font we use, only has semi-bold at 600 (not 500 like SF UI does) */
.semi-bold {
font-weight: 600;
}
body.new-nav,
body.new-nav h1,
body.new-nav h2,
body.new-nav h3,
body.new-nav h4,
body.new-nav h5,
body.new-nav input,
body.new-nav select,
body.new-nav textarea,
body.new-nav button {
font-family: -appl... |
Update location of GitHub link - Update link to be a set distance from the canvas, rather than locked to the bottom. This prevents overlap of the logo with the canvas when the screen's height is shortened | body {
background-attachment: fixed;
background-image: url('../assets/images/bg.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.game-canvas {
background-color: RGBA(233, 229, 219, .9);
border: 2px solid;
margin: auto;
display: block;
}
.logo {
color: #E... | body {
background-attachment: fixed;
background-image: url('../assets/images/bg.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.game-canvas {
background-color: RGBA(233, 229, 219, .9);
border: 2px solid;
margin: auto;
margin-bottom: 75px;
display: block;... |
Duplicate styles with validator dep | .error-msg {
margin: .3em 0 0;
font-size: .8em;
}
.invalid .error-msg {
color: #DC0014;
}
.invalid .error-msg + .radiobutton {
margin-top: .5em;
}
.invalid input,
.invalid select,
.invalid .custom-select,
.invalid textarea {
border-color: #DC0014;
}
.invalid .checkbox input,
.invalid .radiobutton input {
position... | .invalid .error-msg + .radiobutton {
margin-top: .5em;
}
.invalid input,
.invalid select,
.invalid .custom-select,
.invalid textarea {
border-color: #DC0014;
}
.invalid .checkbox input,
.invalid .radiobutton input {
position: relative;
}
.invalid .checkbox input:before,
.invalid .radiobutton input:before {
content:... |
Add padding to container box | nav.top-bar {
background: #86A02D;
}
nav.top-bar h1 {
background: #86A02D;
}
nav.top-bar h1 a{
font-size: 1.5em;
}
.top-bar-section li a:not(.button) {
background: #86A02D !important;
}
.top-bar-section li a:hover {
background: #4d591a !important;
}
ul {
list-style-type: none;
}
.container {... | nav.top-bar {
background: #86A02D;
}
nav.top-bar h1 {
background: #86A02D;
}
nav.top-bar h1 a{
font-size: 1.5em;
}
.top-bar-section li a:not(.button) {
background: #86A02D !important;
}
.top-bar-section li a:hover {
background: #4d591a !important;
}
ul {
list-style-type: none;
}
.container {... |
Add css class directive for mtzdLegendBreak to give a bit of spacing between daytime and nighttime legend information | /*
moment-timezone-diff.css
version : 0.4.0
authors : Martyn Davis
license : MIT
*/
.mtzdCurrentTime {
cursor: pointer;
}
.mtzdError {
background-color: yellow;
}
.mtzdLink {
cursor: pointer;
}
.mtzdLink:hover {
text-decoration: underline;
}
.mtzdDatepicker {
display: none;
}
.mtzdDa... | /*
moment-timezone-diff.css
version : 0.4.0
authors : Martyn Davis
license : MIT
*/
.mtzdCurrentTime {
cursor: pointer;
}
.mtzdError {
background-color: yellow;
}
.mtzdLink {
cursor: pointer;
}
.mtzdLink:hover {
text-decoration: underline;
}
.mtzdDatepicker {
display: none;
}
.mtzdDa... |
Remove background color from search container | html,
body {
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
background-color: hsl(0, 0%, 92%);
height: 100%;
margin: 0 auto;
}
#container {
left: 5%;
right: 5%;
top: 5%;
bottom 5%;
width: 90%;
height: 90%;
margin: 0 auto;
position: absolute;
}
#search... | html,
body {
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
background-color: hsl(0, 0%, 92%);
height: 100%;
margin: 0 auto;
}
#container {
left: 5%;
right: 5%;
top: 5%;
bottom 5%;
width: 90%;
height: 90%;
margin: 0 auto;
position: absolute;
}
#search... |
Update blank app template css | .%%appname%%.main-view {
background: white;
}
.%%appname%% .welcome-view {
background: #eee;
height: auto;
width: 200px;
margin: 50px auto;
border: 1px solid #ccc;
border-radius: 4px;
padding:10px;
text-align:center;
}
| .%%appname%%.main-view {
background: white;
}
.%%appname%% .welcome-view {
background: #eee;
height: auto;
width: auto;
max-width: 300px;
margin: 50px auto;
border: 1px solid #ccc;
border-radius: 4px;
padding:10px;
text-align:center;
}
|
Add some styling for the plugin container |
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
html, body {
background: #f3f3f3;
color: #676a6c;
font-family: 'Lato', sans-serif;
font-weight: 300;
}
#wrapper {
border-top: 4px solid #e7eaec;
margin: 50px;
backgr... |
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
html, body {
background: #f3f3f3;
color: #676a6c;
font-family: 'Lato', sans-serif;
font-weight: 300;
}
#wrapper {
border-top: 4px solid #e7eaec;
margin: 50px;
backgr... |
Add drop-shadow on element select. | .selected-canvas-element {
/* TODO: Add a proper selected canvas element effect. */
}
| .selected-canvas-element {
-webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.6));
} |
Increase size of iOS login button | #login_overlay input{
font-size:30px;
width:90%;
margin: 10px 0px;
}
#login_overlay button{
font-size:20px;
}
#moira_overlay input{
font-size:25px;
}
header button{
font-size:25px;
}
#wrapper{
width:100%;
position:absolute;
top:0px;
left:0px;
height:100%;
}
input{
ma... | #login_overlay input{
font-size:30px;
width:90%;
margin: 10px 0px;
}
#login_overlay button{
width:175px;
font-size:30px;
}
#moira_overlay input{
font-size:25px;
}
header button{
font-size:25px;
}
#wrapper{
width:100%;
position:absolute;
top:0px;
left:0px;
height:100%;... |
Make module search input background white | /**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
@import '../../components/variables.css';
.root {
paddi... | /**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
@import '../../components/variables.css';
.root {
paddi... |
Fix footer to bottom of viewport | @import url(https://fonts.googleapis.com/css?family=Roboto+Mono:700);
body {
font-family: 'Roboto Mono';
}
.header h1 {
font-size: 54px;
text-align: center;
margin-bottom: 0;
}
.header ul {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0;
max-widt... | @import url(https://fonts.googleapis.com/css?family=Roboto+Mono:700);
body {
font-family: 'Roboto Mono';
}
.header h1 {
font-size: 54px;
text-align: center;
margin-bottom: 0;
}
.header ul {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 0;
max-widt... |
Fix for contact icons on mobile devices | {% include css/bootstrap.min.css %}
{% include css/agency.css %}
#skills .row-header {
padding-top: 50px;
}
#skills .row {
padding-bottom: 50px;
}
.bg-dark {
background: #fcfcfc
}
.bg-darker {
background: #fafafa
}
| {% include css/bootstrap.min.css %}
{% include css/agency.css %}
#skills .row-header {
padding-top: 50px;
}
#skills .row {
padding-bottom: 50px;
}
.bg-dark {
background: #fcfcfc
}
.bg-darker {
background: #fafafa
}
.list-inline li {
padding-bottom: 20px
}
|
Update styling for thread page | .forum_post {
padding-bottom: 15px;
padding-top: 15px;
}
.reply_to {
border: 1px groove #333;
margin-bottom: 15px;
margin-top: 15px;
padding: 15px;
}
| |
Add CSS to display division problems | /**
* CSS for jQuery Plugin Fast Facts
*/
.subtitle {
font-size: 50%;
vertical-align: middle;
}
.fast-facts-problem {
border-bottom: 1px solid #000;
font-size: 110%;
margin: 40px auto 40px;
max-width: 40px;
text-align: right;
}
.fast-facts-operator {
float: left;
}
#name {
border-bottom: 2px solid black;... | /**
* CSS for jQuery Plugin Fast Facts
*/
.subtitle {
font-size: 50%;
vertical-align: middle;
}
.fast-facts-problem {
border-bottom: 1px solid #000;
font-size: 110%;
margin: 40px auto 40px;
max-width: 40px;
text-align: right;
}
.fast-facts-operator {
float: left;
}
body.division .fast-facts-problem {
bor... |
Fix spacing around tab close icon on Linux & Windows | :host {
@apply inline-block list-none h-full border border-solid border-t-0 border-l-0 border-b border-r text-xs text-center pl-1 pr-4 py-2 leading-none flex-1 flex-grow-0 border z-10;
background: var(--color-neutral-50);
color: var(--color-key);
border-color: var(--color-neutral-200);
&.isActive {
backg... | :host {
@apply inline-block list-none h-full border border-solid border-t-0 border-l-0 border-b border-r text-xs text-center pl-1 pr-4 py-2 leading-none flex-1 flex-grow-0 border z-10;
background: var(--color-neutral-50);
color: var(--color-key);
border-color: var(--color-neutral-200);
&.isActive {
backg... |
Make code blocks easier to read. | h1 {
margin-top: 25px;
}
img[alt="logo"] {
width: 200px;
}
| h1 {
margin-top: 25px;
}
img[alt="logo"] {
width: 200px;
}
code.hljs {
padding: 0.6em;
font-size: 0.8em;
line-height: 1.5em;
}
|
Add shadow to the color drop down. | .firepicker_color_container {
position: absolute;
background-color: #fff;
margin-top: -10px;
margin-left: 4px;
padding-top: 1px;
padding-right: 1px;
border: 1px solid #989898;
}
.firepicker_color_container .color_value {
padding-right: 5em;
margin-bottom: 1px;
cursor: pointer;
}
.firepicker_color_... | .firepicker_color_container {
position: absolute;
background-color: #fff;
margin-top: -10px;
margin-left: 4px;
padding-top: 1px;
padding-right: 1px;
border: 1px solid #989898;
-moz-box-shadow: 2px 4px 6px #828282;
}
.firepicker_color_container .color_value {
padding-right: 5em;
margin-bottom: 1px;
... |
Add break-word rule to multiline mention inputs and reformat css file | .mention {
font-size: 90%;
font-weight: normal;
padding: .125em .35em;
background-color: #3c510c;
}
.mention .delete-mention {
font-family: monospace;
color: #A1A1A1;
margin-left: 5px;
cursor: pointer;
}
.icon-remove:before {
content: 'x';
display: inline-block;
speak: none;
}
.temp-ment... | .mention {
font-size: 90%;
font-weight: normal;
padding: .125em .35em;
background-color: #3c510c;
}
.mention .delete-mention {
font-family: monospace;
color: #A1A1A1;
margin-left: 5px;
cursor: pointer;
}
.icon-remove:before {
content: 'x';
display: inline-block;
speak: none;
}
.temp-mention {
... |
Fix to require assets moved from app/assets to vendor/assets | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path... | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path... |
Set a max-width for the picture preview in Upload | #upload img.preview_picture {
max-height: 25rem;
margin: 0 auto;
display: block;
}
#upload div.drop {
height: 25rem;
width: 100%;
background-color: red;
}
| #upload img.preview_picture {
max-height: 25rem;
max-width: calc(100% - 4rem);
margin: 0 auto;
display: block;
}
#upload div.drop {
height: 25rem;
width: 100%;
background-color: red;
}
|
Fix blog index post title wrapping issue | .quill {
float: left;
margin-left: -3%;
}
.posts {
float: left;
font-size: 1.5em;
}
.posts li {
padding-bottom: 1em;
}
.posts ul {
list-style-type: none;
} | .quill {
float: left;
margin-left: -3%;
}
.posts {
float: left;
max-width: 33%;
font-size: 1.5em;
}
.posts li {
padding-bottom: 1em;
}
.posts ul {
list-style-type: none;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.