summaryrefslogtreecommitdiff
path: root/src/css/_notes.scss
blob: f4260f31ffc0ad1a1e0ffa20744a0c77ceefd4e3 (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
.list_notes {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-around;
  article {
    transition: all .2s ease-in-out; 
    color: #DDD;
    margin: 0;
    padding: 6px 8px;
    border-radius: 7px;
    background-color: #000000CA;
    box-shadow:  2px 1px 1px 0px rgba(0, 0, 0, 0.2);
    max-width: 215px;
    font-size: 0.875rem;
    cursor: pointer;
    &:hover {
      transform: scale(1.1) translate(0, -5px) rotate(-0.5deg);
      box-shadow:  3px 3px 2px 1px rgba(0, 0, 0, 0.2);
    }
    h1 {
      color: #EEE;
      font-size: 1rem;
      margin: 0;
    }
  }
}
tag {
  background-color: #A8DC;
  display: inline-block;
  margin: 2px;
  padding: 3px;
  color: white;
}