﻿/*
 * Metrans Page Content CSS
 * Author: http://www.volatilestudios.com
 *
 * 
 */

/* Color Key: 
     1: #990101 - USC Red
     2: #eec12a - CSULB Yellow
 */

@charset "utf-8";

/*@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');*/

body {
}

.table-double-border {
    border:3px double #000;

}

.table-double-border tbody tr td {
    padding:15px;
    border:3px double #000;
    vertical-align:middle;
}

.table-double-border tbody tr td ul {
    list-style: none; /* Remove default bullets */
}

    .table-double-border tbody tr td ul li::before {
        content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: black; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        display: inline-block; /* Needed to add space between the bullet and the text */
        width: 1em; /* Also needed for space (tweak if needed) */
        margin-left: -1em; /* Also needed for space (tweak if needed) */
    }
