22 lines
880 B
CSS
22 lines
880 B
CSS
.bg-balloon { background-image: url(/themes/dcb2017/images/dcb-bg.jpg); }
|
|
.bg-black { background-color: #111111; }
|
|
.bg-cover { background-size: cover; }
|
|
.bg-center { background-position: center; }
|
|
.flex { display: flex; }
|
|
.flex-1 { flex: 1; }
|
|
.flex-col { flex-direction: column; }
|
|
.font-bold { font-weight: bold; }
|
|
.h-full { height: 100%; }
|
|
.items-center { align-items: center }
|
|
.justify-between { justify-content: space-between; }
|
|
.justify-center { justify-content: center; }
|
|
.mb-0 { margin-bottom: 0 !important; }
|
|
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
|
|
.p-4 { padding: 1rem; }
|
|
.px-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
|
|
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
|
|
.text-center { text-align: center; }
|
|
.text-lg { font-size: 1.2rem; }
|
|
.text-white { color: #FFFFFF; }
|
|
.uppercase { text-transform: uppercase; }
|