aboutsummaryrefslogtreecommitdiff
path: root/random-projects/season3-countdown/style.scss
blob: d0b445f3e3d688ee9a695bef073082a25d900967 (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
62
63
64
65
66
67
68
69
70
.random-project__project__season3-countdown {
  #youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    pointer-events: none;

    z-index: -1;
  }

  .container {
    color: white;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1em;
  }

  .text {
    font-size: 4em;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
  }

  .countdown {
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    font-size: 4em;

    span {
      font-size: 3em;
    }
  }
}

@media screen and (max-width: 1600px) {
  .random-project__project__season3-countdown {
    .container {
      font-size: 0.5em;
    }
  }
}

@media screen and (max-width: 1024px) {
  .random-project__project__season3-countdown {
    .container {
      font-size: 0.4em;
    }
  }
}

@media screen and (max-width: 700px) {
  .random-project__project__season3-countdown {
    .container {
      font-size: 0.3em;
    }
  }
}

@media screen and (max-width: 500px) {
  .random-project__project__season3-countdown {
    .container {
      font-size: 0.2em;
    }
  }
}