# wt-security/2.2.1/htdocs/scss/errors.scss

WebTotem Security, version 2.2.1. 120 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.2.1/code/htdocs/scss/errors.scss
- Raw: https://pluginprobe.com/plugins/wt-security/2.2.1/raw/htdocs/scss/errors.scss
- Modified: 2020-09-10T12:50:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wt-security/2.2.1/code/htdocs/scss/errors.scss#L10-L20`.

```scss
@import "variables.scss";

.wtotem {
    &_layout {
        background: #e5e5e5;
    }

    &_alert {
    }
}
.wtotem_alert {
    padding: 17px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 30px;
    &__desc {
        display: flex;
        align-items: center;
    }

    &__img {
        margin-right: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        &_cross {
            width: 16px;
            height: 16px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ee3f3f;
            &:before {
                content: "";
                position: absolute;
                display: block;
                width: 8px;
                height: 1.3px;
                border-radius: 1px;
                transform: rotate(45deg);
                background: #fff;
            }
            &:after {
                content: "";
                position: absolute;
                display: block;
                width: 8px;
                height: 1.3px;
                border-radius: 1px;
                transform: rotate(-45deg);
                background: #fff;
            }
        }
    }

    &__title {
        font-size: 12px;
        text-transform: uppercase;
        &_yellow {
            color: #f5c451;
        }
        &_green {
            color: #4bc374;
        }

        &_red {
            color: #ee3f3f;
        }
    }

    &__text {
        color: #1d293f;
        font-size: 12px;
    }

    &__close {
        position: relative;
        width: 10px;
        height: 10px;
        display: flex;
        justify-self: center;
        align-items: center;
        cursor: pointer;
        &:before {
            content: "";
            position: absolute;
            display: block;
            width: 10px;
            height: 2px;
            border-radius: 1px;
            transform: rotate(45deg);
            background: #000;
        }
        &:after {
            content: "";
            position: absolute;
            display: block;
            width: 10px;
            height: 2px;
            border-radius: 1px;
            transform: rotate(-45deg);
            background: #000;
        }
    }
}

/* 576-768px sm  Small */
@media screen and (max-width: 768px) {
    .wtotem_alert {
        margin-bottom: 20px;
    }
}
/* 320-576px     Extra small */
@media screen and (max-width: 576px) {
}

```
