2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 01:09:04 +00:00
iconify/components-demo/svelte-demo/public/global.css

163 lines
2.4 KiB
CSS
Raw Normal View History

2021-05-01 20:38:56 +00:00
main {
font-family: Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: left;
color: #2c3e50;
font-size: 16px;
line-height: 1.5;
}
2021-05-01 20:38:56 +00:00
/* Sections */
section {
border-bottom: 1px dotted #ccc;
padding: 16px;
}
2021-05-01 20:38:56 +00:00
section:last-child {
border-bottom-width: 0;
}
section:after {
content: ' ';
display: table;
clear: both;
}
h1,
h2 {
margin: 0 0 16px;
padding: 0;
font-size: 24px;
font-weight: normal;
}
h2 {
margin: 16px 0;
font-size: 20px;
}
h1 + h2 {
margin-top: -8px;
}
p {
margin: 12px 0 4px;
padding: 0;
}
2021-05-01 20:38:56 +00:00
/* Tests */
.test-row {
font-size: 16px;
line-height: 1.5;
}
.test-row-icons {
padding-right: 4px;
}
.test-row-icons > :is(svg, span) {
2021-05-01 20:38:56 +00:00
color: #afafaf;
display: none;
}
.test-row-icons > :is(svg, span).visible {
2021-05-01 20:38:56 +00:00
display: inline-block;
}
.test-row-icons > :is(svg, span).success {
2021-05-01 20:38:56 +00:00
color: #327335;
}
.test-row-icons > :is(svg, span).failed {
2021-05-01 20:38:56 +00:00
color: #ba3329;
}
2021-05-01 20:38:56 +00:00
/* 24px icon */
.icon-24 :is(svg, span) {
2021-05-01 20:38:56 +00:00
font-size: 24px;
line-height: 1;
vertical-align: -0.25em;
}
2021-05-01 20:38:56 +00:00
/* Alert demo */
.alert {
position: relative;
margin: 8px;
padding: 16px;
padding-left: 48px;
background: #ba3329;
color: #fff;
border-radius: 5px;
float: left;
}
2021-05-01 20:38:56 +00:00
.alert + div {
clear: both;
}
.alert :is(svg, span) {
2021-05-01 20:38:56 +00:00
position: absolute;
left: 12px;
top: 50%;
font-size: 24px;
line-height: 1em;
margin: -0.5em 0 0;
}
2021-05-01 20:38:56 +00:00
/* Checkbox component */
.checkbox-container {
margin: 8px 0;
}
2021-05-01 20:38:56 +00:00
.checkbox {
cursor: pointer;
/* color: #1769aa; */
color: #626262;
text-decoration: none;
}
.checkbox:hover {
color: #ba3329;
text-decoration: underline;
}
.checkbox :is(svg, span) {
2021-05-01 20:38:56 +00:00
margin-right: 4px;
color: #afafaf;
font-size: 24px;
line-height: 1em;
vertical-align: -0.25em;
}
.checkbox--checked :is(svg, span) {
2021-05-01 20:38:56 +00:00
color: #327335;
}
.checkbox:hover :is(svg, span) {
2021-05-01 20:38:56 +00:00
color: inherit;
}
2021-05-01 20:38:56 +00:00
.checkbox-container small {
margin-left: 4px;
opacity: 0.7;
}
2021-05-01 20:38:56 +00:00
/* Inline demo */
.inline-demo :is(svg, span) {
2021-05-01 20:38:56 +00:00
color: #06a;
margin: 0 8px;
position: relative;
z-index: 2;
background: #fff;
}
.inline-demo div {
position: relative;
font-size: 16px;
line-height: 1.5;
}
.inline-demo div:before,
.inline-demo div:after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 0;
border-top: 1px dashed #506874;
opacity: 0.5;
z-index: -1;
}
.inline-demo div:before {
bottom: 5px;
}
.inline-demo div:after {
bottom: 7px;
border-top-color: #ba3329;
}