126 lines
1.5 KiB
CSS
126 lines
1.5 KiB
CSS
|
|
/* top bar */
|
|
#logo, #title {
|
|
display: inline-block;
|
|
}
|
|
|
|
#logo {
|
|
height: 1.5em;
|
|
}
|
|
|
|
#title {
|
|
margin: 2px 5px 2px 5px;
|
|
}
|
|
|
|
/* learn more */
|
|
.learn-more {
|
|
text-align: center;
|
|
margin-top: 2px;
|
|
padding-top: 2px;
|
|
border-top: 1px lightgrey solid;
|
|
}
|
|
|
|
/* examples */
|
|
.example {
|
|
clear: both;
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.example-image, .example-code {
|
|
float: left;
|
|
margin: 5px 15px 5px 0px;
|
|
}
|
|
|
|
.example-image {
|
|
width: 20%;
|
|
}
|
|
|
|
.example-code {
|
|
padding: 2em;
|
|
width: 60%;
|
|
background-color: lightgrey;
|
|
font-family: monospace;
|
|
color: #666;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* contribute */
|
|
#github-logo {
|
|
float: right;
|
|
height: 1em;
|
|
}
|
|
|
|
/* all claims */
|
|
|
|
.all-claims-item {
|
|
margin-top: 2px;
|
|
padding-top: 2px;
|
|
border-top: 1px lightgrey solid;
|
|
overflow: auto;
|
|
}
|
|
|
|
.all-claims-img {
|
|
width: 20%;
|
|
float: left;
|
|
margin: 5px 30px 5px 0px;
|
|
}
|
|
|
|
.all-claims-details {
|
|
word-wrap: break-word;
|
|
list-style: none;
|
|
list-style-type: none;
|
|
}
|
|
|
|
/* publish */
|
|
#drop-zone {
|
|
border: 1px dashed lightgrey;
|
|
padding: 1em;
|
|
height: 6em;
|
|
}
|
|
|
|
#image-preview {
|
|
display: none;
|
|
}
|
|
|
|
/* meme */
|
|
canvas {
|
|
background-color: white;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.meme-fodder-img {
|
|
width: 21%;
|
|
padding: 0px;
|
|
margin: 2% 4% 2% 0px;
|
|
float: left;
|
|
}
|
|
|
|
/* statistics */
|
|
.totals-row {
|
|
border-top: 1px solid grey;
|
|
border-bottom: 1px solid grey;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (max-width: 750px) {
|
|
|
|
.all-claims-img {
|
|
width:30%;
|
|
}
|
|
|
|
.all-claims-details {
|
|
font-size: small;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 475px) {
|
|
|
|
.all-claims-img {
|
|
width:50%;
|
|
}
|
|
|
|
}
|