This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/source/css/utilities.css

16 lines
561 B
CSS
Raw Normal View History

.bg-balloon { background-image: url(/themes/dcb2017/images/dcb-bg.jpg); }
2019-01-24 16:30:26 +00:00
.bg-black { background-color: #111111; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
2019-01-24 09:51:58 +00:00
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
2019-01-24 16:30:26 +00:00
.font-bold { font-weight: bold; }
2019-01-24 09:51:58 +00:00
.h-full { height: 100%; }
.justify-between { justify-content: space-between; }
2019-01-24 16:30:26 +00:00
.p-4 { padding: 1rem; }
.text-center { text-align: center; }
.text-lg { font-size: 1.2rem; }
.text-white { color: #FFFFFF; }
.uppercase { text-transform: uppercase; }