User:11LAM11/common.css

来自Arcaea中文维基

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
/* General styles for the code viewer container */
.code-viewer-container {
    font-family: 'consolas', 'Menlo', sans-serif;
    margin: 5px;
    border-radius: 5px;
    background: #40404b;
    border: #aaaaaf 1px solid;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 0 10px #000000aa;
    min-width: 310px;
    max-width: 450px;
    width: 450px;
    overflow: hidden;
    animation: fadeIn .2s cubic-bezier(0.215, 0.610, 0.355, 1) .2s 1 both running;
    -webkit-animation: fadeIn .2s cubic-bezier(0.215, 0.610, 0.355, 1) .2s 1 both running;
}

span {
    font-family: 'Consolas', 'Menlo', sans-serif;
    outline: none;
    border: none;
    appearance: none;
    background: none;
    -webkit-appearance: none;
    font-size: 15px;
    white-space: nowrap;
    font-style: normal;
    z-index: 1;
}

/* Style for the window controls (red, yellow, green circles) */
.window-controls {
    position: relative;
    top: 7px;
}

.window-controls div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #00000033;
}

.red-circle {
    background: #f04545;
    left: 10px;
}

.yellow-circle {
    background: #ffba00;
    left: 35px;
}

.green-circle {
    background: #0faa58;
    left: 60px;
}

/* Style for the file name */
.file-name {
    font-size: 13px;
    font-family: sans-serif;
    text-align: center;
    margin: 5px;
    color: #fafaff;
}

/* Styles for the code content */
.code-content {
    font-family: 'Consolas', 'Menlo', sans-serif;
    padding: 8px 15px 10px 15px;
    border-radius: 0px 0px 5px 5px;
    background: #1f1f25;
    overflow: hidden;
}

.line {
    color: #ffffff99;
    z-index: 1;
    line-height: 25px;
}

/* Indents */
.pre-space-1 {
    background: #202531;
    padding: 0.3em 0 0.3em 0;
    color: #ffffff33;
}
.pre-space-2 {
    background: #292127;
    padding: 0.3em 0 0.3em 0;
    color: #ffffff33;
}

/* Styles for XML comments */
.xml-comment {
    font-style: italic;
    color: #439970;
    border: none;
}

.xml-tag {
    font-style: italic;
    color: #64cd9a;
    border: none;
}

/* Styles for C# keywords */
.cs-keyword {
    color: #ec5aec;
    border: none;
}

/* Styles for C# types and method names */
.cs-type {
    color: #48ffff;
    border: none;
}

.cs-method {
    color: #e6c56b;
    border: none;
}

/* Styles for C# literals and miscellaneous */
.cs-literal {
    color: #62f0ba;
    border: none;
}

.cs-comment {
    color: #439970;
    border: none;
}

.cs-punctuation {
    color: #45caff;
    border: none;
}

.cs-switch {
    color: #ffc94b;
    border: none;
}

.cs-brace {
    color: #ff6695;
    border: none;
}

.cs-normal {
    color: #6fccca;
    border: none;
}

/* Styles for preformatted text spaces */
.pre-space {
    white-space: pre;
    border: none;
}

/* Mobile */

@media only screen and (max-width: 600px) {
    .code-viewer-container {
        max-width: 380px;
        width: 380px;
    }
    .window-controls {
        top: 2.5%;
    }
    span {
        font-size: 13px;
    }
    .line {
        line-height: 20px;
    }
}

@media screen and (max-width: 450px) {
    .code-content {
        padding: 5px 10px;
    }
    .code-viewer-container {
        max-width: 320px;
        width: 320px;
    }
    span {
        font-size: 11px;
        font-weight: bold;
    }
    .line {
        line-height: 16px;
    }
}

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
        scale: 0.9;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}