File size: 1,239 Bytes
72c8f1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
62
63
64
65
66
67
@import "~bootstrap/scss/bootstrap";
@import "~spuit";

@import "styles/config/variables";
@import "styles/config/mixins";
@import "styles/config/images";

@import "styles/components/logo";
@import "styles/components/icon";
@import "styles/components/card";
@import "styles/components/card-block";
@import "styles/components/button";
@import "styles/components/input";
@import "styles/components/progress";
@import "styles/components/header";
@import "styles/components/title-block";
@import "styles/components/video";

// basic styles

html {
  font-size: 100%;
  @include breakpoint-down(md) {
    font-size: 80%;
  }
}

body {
  @include font(1rem);
  color: $color-black;
  background: $color-bg;
  background-image: url('../images/bg-pattern.png');
  background-size: 400px 400px;
  background-repeat: repeat;
}

h3 {
  @include font(1.125rem, 1.8rem, 700);
  margin-bottom: 5px;
}

p {
  @include font(.8125rem, 1.4rem);
}

// override styles

.container {
  &.is-min {
    max-width: 500px;
    // margin-left: 15px;
  }
}

// dammy

.dummy-photo {
  background-color: #000;
  width: 100%;
  height: 76px;
  border-radius: 5px;

  &.is-lg {
    height: 270px;
  }
}