Files
portfolio/static/scss/_text.scss

69 lines
934 B
SCSS

$selection_background: rgba(128, 0, 0, 0.3);
h2 {
font-size: 3.5rem !important;
}
h3 {
font-size: 3.2rem !important;
}
.sun {
color: #f1c40f !important
}
.gray {
color: #cacaca !important
}
.purple {
color: #551a8b !important
}
.emerald {
color: #2ecc71 !important
}
.center {
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.unselectable {
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
::-moz-selection {
background-color: $selection_background;
}
::selection {
background-color: $selection_background;
}
/*
.colour {
&.sun { color: #f1c40f }
&.gray { color: #cacaca }
&.purple { color: #551a8b }
&.emerald { color: #2ecc71 }
}
.align {
&.center { text-align: center; }
&.left { text-align: left; }
& .right { text-align: right; }
}
*/