

/* css reset */
*,
::before,
::after {
    box-sizing: border-box;
    /* 1 */
    border-width: 0;
    /* 2 */
    border-style: solid;
    /* 2 */
    border-color: theme('borderColor.DEFAULT', currentColor);
    /* 2 */
}

a {
    color: inherit;
    text-decoration: inherit;
}



html {
    line-height: 1.5;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -moz-tab-size: 4;
    /* 3 */
    tab-size: 4;
    /* 3 */
    /* font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); */
    /* 4 */
}

body {
    font-family:
    -apple-system,
    
    Noto Sans,
    'Segoe UI',
    Roboto,
    Helvetica Neue,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji';
    margin: 0;
    line-height: inherit;
}

/* end of css reset */

/* component css */
/* .btn {
    font-family: var(--button-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: var(--button-line-height);
    padding: var(--button-padding-y) var(--button-padding-x);
    margin: 0;
    height: auto;
    border: var(--border-width) solid transparent;
    vertical-align: middle;
    -webkit-appearance: none;
    color: inherit;
    background-color: transparent;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus {
    outline: none;
    border-color: var(--darken-2);
    box-shadow: 0 0 0 3px var(--darken-3);
}

::-moz-focus-inner {
    border: 0;
    padding: 0;
}

:root {
    --border-width: 1px;
    --bold-font-weight: bold;
    --button-font-family: inherit;
    --button-font-size: inherit;
    --button-font-weight: var(--bold-font-weight);
    --button-line-height: 1.125rem;
    --button-padding-y: .5rem;
    --button-padding-x: 1rem;
    --darken-2: rgba(0, 0, 0, .125);
    --darken-3: rgba(0, 0, 0, .25);
} */

.btn-primary {
    color: var(--button-color);
    background-color: var(--button-background-color);
    border-radius: var(--border-radius);
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 20rem var(--darken-1);
}

.btn-primary:active {
    box-shadow: inset 0 0 0 20rem var(--darken-2),
        inset 0 3px 4px 0 var(--darken-3),
        0 0 1px var(--darken-2);
}

.btn-primary:disabled,
.btn-primary.is-disabled {
    opacity: .5;
}

:root {
    --blue: #0074d9;
    --button-color: #fff;
    --button-background-color: var(--blue);
    --border-radius: 3px;
    --darken-1: rgba(0, 0, 0, .0625);
    --darken-2: rgba(0, 0, 0, .125);
    --darken-3: rgba(0, 0, 0, .25);
}
/* endof component css */

/* my app custom config */
:root {
    --bg-color: rgb(235, 236, 236);
    --post-title-color: rgb(50, 50, 50);
    --post-header-color: rgb(66, 66, 66);
    --post-border-color: rgb(211, 211, 211);
    --color-blue: #3399FF;
}

html , body {
    font-size: 16px;
}

body {
    /* https://github.com/TimothyYe/bing-wallpaper */
    /* background-image: url(https://placeimg.com/1920/1080/nature); */
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-color);
}

@media screen and (max-width: 450px) {
    body {
         background-image:none;
    }
}

a {
    color: var(--color-blue);
}

a:hover {
    text-decoration: underline;
}

p {
  white-space: pre-wrap;
}


.wls-main-wrapper {
    margin: 0 auto;
    padding: 0;
    max-width: 670px; 
    min-width: 350px; 
    min-height: 100vh;
}

.wls-main {
    margin: 0 auto;
    width: 100%;
    background-color: white;
    /* backdrop-filter: blur(20px); */
}

.wls-content {
    padding: 0 1rem 1rem 1rem;
    width: 100%;
    min-height: 100vh;
    /* background-color: white; */
    /* background-color: rgba(255, 255, 255, .9); */
    /* max-width: 640px;
    min-width: 350px;
    min-height: 100vh; */
    /* backdrop-filter: blur(20px); */
}

.wls-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.wls-btn {
    color:rgb(63, 63, 63);
}

.wls-btn:hover {
    cursor: pointer;
    filter: brightness(.6);
}


.blue {
    color: #3399FF;
}

.text-link {
    color: #1870f0;
}

.gray {
    color: #4F4F4F;
}

.warning {
    color: #FF4136;
}

.black {
    color: #2e2e2e;
}

.text-lg {
    font-size: 18px;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-md {
    font-size: 15px;
}

.text-sm {
    font-size: 14px;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 600;
}

.leading-8 {
    line-height: 2rem;
}

