Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_code.less « ui « stylesheets « Morpheus « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bfd9d2cda2f4605b171b49ed2082cf630770430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
code {
    padding: 2px 4px;
    font-size: 90%;
    color: @theme-color-code;
    background-color: @theme-color-code-background;
    border-radius: 4px;
}

// The .codeblock class is useful to style <textarea> like a code block
pre, .codeblock {
    font-size: 13px;
    color: @theme-color-code;
    background-color: @theme-color-code-background;
    border: none;
    border-radius: 3px;
    direction: ltr;
    margin: 15px 0;
    padding: 20px;
    text-align: left;
    height: auto;
    display: block;
    width: 100%;
}