PluginProbe
DecaLog / 4.4.0
DecaLog v4.4.0
3.0.2 3.1.0 3.10.0 3.2.0 3.3.0 3.4.0 3.4.1 3.5.0 3.5.1 3.6.0 3.6.1 3.6.2 3.6.3 3.7.0 3.7.1 3.8.0 3.9.0 3.9.1 4.0.0 4.1.0 4.2.0 4.3.0 4.3.1 4.4.0 4.5.0 All 75 releases
decalog / admin / css / decalog.css

decalog.css in DecaLog 4.4.0, at admin/css/decalog.css

116 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .decalog-about-logo {
2 width: 128px;
3 float: right;
4 margin: -20px 8px 8px 20px;
5 transition: opacity 1.4s ease-in;
6 }
7
8 .markdown ul{
9 list-style: disc;
10 margin-left: 20px;
11 }
12
13 .markdown h3 {
14 margin: 40px 0 0 0;
15 }
16
17 .markdown blockquote {
18 border-left: 4px solid rgba(0,0,0,.07);
19 padding-left: 10px;
20 margin-left: 20px;
21 }
22
23 .markdown blockquote p,
24 .markdown blockquote code {
25 font-size: smaller !important;
26 }
27
28 .markdown pre code {
29 display: block;
30 padding: 14px;
31 border-radius: 4px;
32 padding-left: 36px;
33 }
34
35 .markdown code.language-console {
36 background-color: #23282d;
37 color:#AAAAAA;
38 }
39
40 .markdown code.language-bash {
41 background-color: #23282d;
42 color:#AAAAAA;
43 padding-left: 36px;
44 }
45
46 @media only screen and (max-width: 500px) {
47 .decalog-about-logo {
48 width: 92px;
49 margin: -16px 6px 6px 16px;
50 }
51 }
52
53 @keyframes decalog-selftoken-blink {
54 from { filter: grayscale(0%) opacity(100%) }
55 50% { filter: grayscale(80%) opacity(20%) }
56 to { filter: grayscale(0%) opacity(100%) }
57 }
58
59 .decalog-selftoken {
60 animation:decalog-selftoken-blink 1200ms infinite;
61 }
62
63 .decalog-spans-wrap {
64 /*background-size: 25% 75%;
65 background-position: left 10% ;
66 background-image: linear-gradient(to right,transparent 0%, 50%, #F8F8F8 50%);*/
67 }
68
69 .decalog-span-wrap {
70 display:flex;
71 }
72
73 .decalog-span-wrap:hover {
74 background-color: rgba(0, 0, 0, 0.03);
75 }
76
77 .decalog-span-text {
78 width: 25%;
79 overflow: hidden;
80 white-space: nowrap;
81 text-overflow: ellipsis;
82 display: inline-block;
83 border-right: 1px solid #F0F0F0;
84 }
85
86 .decalog-span-timeline {
87 width: 75%;
88 display: inline-block;
89 padding: 0;
90 margin: 0;
91 vertical-align: text-bottom;
92 background-image: linear-gradient(to right,transparent 0%, transparent 50%, #F8F8F8 50%);
93 }
94
95 .decalog-span-timeline-blank {
96 height: 20px;
97 display: inline-block;
98 }
99
100 .decalog-span-timeline-line {
101 height: 14px;
102 display: inline-block;
103 text-align: center;
104 border-radius: 7px;
105 vertical-align: baseline;
106 }
107
108 .decalog-span-timeline-text {
109 font-size: xx-small;
110 background: rgba(255, 255, 255, 0.4);
111 padding: 0 3px;
112 border-radius: 3px;
113 margin:0;
114 vertical-align: text-top;
115 }
116