aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Notes/styles/_import.scss
blob: bab0655b903d2bdbf7d29c4317067d3804cfbcb0 (plain) (blame)
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
.import {
  @keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  animation: fade-in .3s;

  form {
    padding: 1em;
  }

  input[type=file] {
    display: none;
  }

  label {
    display: inline-block;
    // cursor: pointer;
  }

  li {
    padding: .25em;
  }

  p {
    padding: 1em 0;
  }

  .fa-check ~ span {
    color: var(--color-success);
  }
}