dcbristol-2019-static/source/css/utilities.css

22 lines
880 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%; }
2019-01-24 17:20:54 +00:00
.items-center { align-items: center }
2019-01-24 09:51:58 +00:00
.justify-between { justify-content: space-between; }
2019-01-24 17:20:54 +00:00
.justify-center { justify-content: center; }
.mb-0 { margin-bottom: 0 !important; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
2019-01-24 16:30:26 +00:00
.p-4 { padding: 1rem; }
2019-01-24 17:20:54 +00:00
.px-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
2019-01-24 16:30:26 +00:00
.text-center { text-align: center; }
.text-lg { font-size: 1.2rem; }
.text-white { color: #FFFFFF; }
.uppercase { text-transform: uppercase; }