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

dark.scss « css « src - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fd600f2f61878e383d0ba45f4223979265624c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
.main a {
    color: #99CCFF;
}

.main .article-tags a {
    background: #327E36;
    color     : #FFF;
}

.local-info, .dialog label {
    background: #FFFF99;
    color     : #333;
    box-shadow: 2px 3px 1px 1px #000;
}

/* man bg */
body,
.main,
.header .menu>li:hover,
.footer a:hover,
.logo-link,
.dialog {
    background: #282C34;
}

/* main fg */
.main,
blockquote.twitter-tweet,
.header .sub-menu a,
.sidebar a,
.taxonomy-key,
.main .title a,
.dialog .title {
    color: #C6C6C7;
}

.icon {
    background: #C6C6C7;
}

/* main minor */
.article-meta,
.item-meta,
.footnotes {
    color: #939BAB;
}

th,
td {
    border-bottom: 1px solid #939BAB;
}

hr {
    border: 1px solid #939BAB;
}

.pagination {
    background: #939BAB;
}

/* sidebar bg */
.sidebar {
    background: #16191D;
}

.header ul ul {
    box-shadow: 0 0.1em 0.2em 0 #060606;
}

.header ul ul,
.pagination a:hover {
    background: #1A1D21;
}

code {
    background: #1A1C21;
}

/* sidebar minor */
.count,
.taxonomy-key {
    color: #939394;
}


/* header, footer bg */
.header,
.footer,
.header .sub-menu li:hover,
.sidebar a:hover {
    background: #21252B;
}

/* header, footer fg */
.header a,
.footer a,
.footer time,
.pagination a {
    color: #797D85;
}

.footer .icon {
    background-color: #797D85;
}

.main h1,
.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
    text-shadow: 0 1px 1px #000;
}

.title {
    text-shadow: 0 1px 1px #000;
}

.dialog {
    width: 100vw;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    font-size: 1rem;
}
.dialog .wrapper {
    padding: 1rem;
}
.dialog header, .dialog main, .dialog footer {
    margin-bottom: 2rem;
}

.dialog header {
    margin-top: -2rem;
}
.dialog div {
    margin-bottom: 1rem;
}
.dialog.show {
    height: 100vh;
}

.dialog label {
    display: block;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    box-shadow: none;
}
.dialog input {
    padding: 0.3rem;
}
.dialog input, .dialog button {
    font-size: 1.2rem;
    float: right;
}

.dialog button {
    padding: 0.3rem 1rem;
    background: #3083FE;
    color: #FFF;
}

.dialog .close-dialog {
    font-size: 3rem;
    background: none;
    border: none;
}