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

checklist.scss_830e2c6732622c34cf9ed8a208896bac.content « sass « scss « assets « _gen « resources « exampleSite - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e1b0f4e642e7d1519303d4c74e3b169c725ff80 (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
body article section.page div.content div.checklist-header .form-control-file {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 6em;
  outline: none;
  visibility: hidden;
  cursor: pointer;
  background-color: #c61c23;
  box-shadow: 0 0 5px solid currentColor; }
  body article section.page div.content div.checklist-header .form-control-file:before {
    content: attr(data-title);
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 100%;
    min-height: 4em;
    line-height: 0.5em;
    padding-top: 1.5em;
    opacity: 1;
    visibility: visible;
    text-align: center;
    border: 0.25em dashed currentColor;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden; }
  body article section.page div.content div.checklist-header .form-control-file:hover:before {
    border-style: solid;
    box-shadow: inset 0px 0px 0px 0.25em currentColor; }

body article section.page div.content div.checklist-footer {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center; }

body #TableOfContents > ul li input {
  margin-right: 0.3em; }

body #TableOfContents > ul li:not(.cl-ready):not(.cl-done):not(.cl-doing) input {
  visibility: hidden; }

body #TableOfContents > ul li.cl-ready input, body #TableOfContents > ul li.cl-doing input, body #TableOfContents > ul li.cl-done input {
  visibility: visible; }