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

custom.css « css « static - github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c0ae4e4cd8e2cbfb4b348d355bafbb175d8b3f6 (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
.my-lg-6 {
    margin-top: 5rem!important;
    margin-bottom: 5rem!important
  }
    
  .bg-skew {
    position: relative
  }
  
  .bg-skew:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewY(-5deg);
    transform-origin: top left;
    z-index: -1
  }
  
  .bg-skew-light:before {
    background-color: #f8f9fa
  }
  
  .card-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transform: translateY(-3px)
  }
  
  .link-cta {
    border-bottom: 2px solid #006aff;
    color: #343a40;
    font-size: .875rem;
    letter-spacing: 1px;
    padding-bottom: 2px;
    text-transform: uppercase
  }
  
  .link-cta:hover {
    color: #006aff;
    text-decoration: none
  }
  
  .link-tag {
    text-decoration: underline
  }
  
  .link-tag:hover{
    text-decoration: none
  }
  
  .card-title a {
    color: #212529
  }
  
  .card-title a:focus, .card-title a:hover {
    color: #006aff;
    text-decoration: none
  }