File size: 2,475 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.header {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;

  @media screen and (max-width: 800px) {
    flex-direction: column;
    height: 120px;
  }

  &__logo-box {
    @media screen and (max-width: 800px) {
      margin: 0 auto;
    }
  }

  &__logo {
    height: 100%;
    width: 120px;
    margin-left: 20px;
    cursor: pointer;
    margin-bottom: 10px;

    @media screen and (max-width: 800px) {
      margin: unset;
    }
  }

  &__options-primary,
  &__options-secondary {
    @media screen and (max-width: 800px) {
      display: none;
    }
  }

  &__options {
    width: 88%;
    height: 100%;
    display: flex;
    align-items: center;

    @media screen and (max-width: 800px) {
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: row;
      margin-bottom: 25px;
      height: 200px;
      justify-content: center;
    }
  }

  &__option {
    padding: 10px 12px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 550;
    background-color: transparent;
    cursor: pointer;
    color: #e5e5e5;
    text-decoration: none;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;

    @media screen and (max-width: 800px) {
      padding: 5px 6px;
      font-size: 13px;
    }

    &:hover {
      color: #a9a9a9;
      transition: 0.4s all;
    }

    &--signin {
      margin-right: 25px;
      @media screen and (max-width: 800px) {
        margin: unset;
      }
    }

    &--signout {
      display: inline;
      margin-right: 15px;
      @media screen and (max-width: 800px) {
        margin: unset;
      }
    }
  }

  &__searchbar {
    margin-left: auto;
    margin-right: 15px;

    @media screen and (max-width: 800px) {
      margin: unset;
      position: absolute;
      top: 65%;
      margin: 0 auto;
    }
  }

  &__nav-menu-icon {
    @media screen and (min-width: 800px) {
      display: none;
    }
    @media screen and (max-width: 800px) {
      display: inline-block;
      font-size: 25px;
      color: white;
      position: absolute;
      top: 5%;
      left: 2%;
      padding: 10px;
      transition: all 0.3s ease;
      cursor: pointer;

      &:active {
        transform: scale(1.1);
      }
    }
  }
}