aboutsummaryrefslogtreecommitdiff
path: root/_scss/_custom.scss
blob: fbe8363f9b1f2a674fd16135e94ab2c5d4ebfd3c (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
34
35
36
37
38
39
40
41
42
43
// Animation tools
@import 'animate';
@import 'utilities/animationduration';
@import 'utilities/animationfillmode';
@import 'utilities/animationname';

// Auxiliary tools
@import 'utilities/boxsizing';
@import 'utilities/textsizeadjust';

*,
*::after,
*::before {
  @include box-sizing(border-box);
  @include text-size-adjust(100%);
}

body {
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.container {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.message-item {
  background-color: rgba(21, 27, 38, .8);
  letter-spacing: .05em;
  margin: 1em;
  padding: 1em;

  @include animation-duration(1s);
  @include animation-fill-mode(both);
  @include animation-name(fadeIn);
}

.message-text {
  color: #fff;
}