Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6856 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6632 stevensc 1
#app {
2
    padding-top: 4.5rem;
3
    padding-bottom: 4.5rem;
4
    min-height: 80vh;
5
 
6
    @media (min-width: 768px) {
7
        padding-top: 5.5rem;
8
        padding-bottom: initial;
9
    }
10
}
11
 
12
body {
13
    position: relative;
14
    background-color: #f3f2ef !important;
15
}
16
 
17
.header,
18
.mobile-menu {
19
    background-color: #fff;
20
    width: 100%;
21
    z-index: 999;
22
}
23
 
24
.header {
25
    top: 0;
26
    position: fixed;
27
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
28
}
29
 
30
.header__nav {
31
    display: flex;
32
    justify-content: space-between;
33
    gap: 0.5rem;
34
}
35
 
36
.header__left {
37
    align-items: center;
38
    display: flex;
39
    gap: 1rem;
40
    flex: 1;
41
 
42
    & a>img {
43
        object-fit: cover;
44
        display: none;
45
    }
46
 
47
    &.show {
48
        width: -webkit-fill-available;
49
    }
50
}
51
 
52
.header__search {
53
    display: flex;
54
    align-items: center;
55
    border-radius: 5px;
56
    height: 34px;
57
    color: gray;
58
    cursor: pointer;
59
    transition: all 0.2s;
60
    width: -webkit-fill-available;
61
 
62
    &:hover {
63
        color: #000;
64
    }
65
 
66
    &>input {
67
        display: none;
68
        border: none;
69
        outline: none;
70
        background: none;
71
        width: 100%;
72
    }
73
 
74
    &.show {
75
        padding: 0.5rem;
76
        margin: 10px 0;
77
        background-color: #eef3f0;
78
        flex: 1;
79
 
80
        &>input {
81
            display: initial;
82
        }
83
    }
84
}
85
 
86
.header__right {
87
    align-items: center;
88
    flex: 1;
89
    display: flex;
90
 
91
    &>ul {
92
        display: flex;
93
        flex: 1;
94
        justify-content: space-evenly;
95
        gap: 0.5rem;
96
 
97
        li {
98
            position: relative;
99
        }
100
    }
101
 
102
    &.hide {
103
        display: none;
104
    }
105
}
106
 
107
.MuiAccordionSummary-content {
108
    align-items: center;
109
    margin: 0.5rem 0 !important;
110
    gap: 2.5rem;
111
    color: rgba(0, 0, 0, 0.54);
112
}
113
 
114
@media (min-width: 768px) {
115
    .header__nav {
116
        gap: initial;
117
    }
118
}
119
 
120
@media (min-width: 992px) {
121
    .header__right {
122
        flex-grow: initial;
123
 
124
        &>ul {
125
            display: flex !important;
126
            justify-content: initial;
127
            gap: 1.5rem;
128
        }
129
    }
130
 
131
    .header__left {
132
        flex: 1;
133
 
134
        & a>img {
135
            display: flex;
136
            height: 50px;
137
            width: 50px;
138
            object-fit: scale-down;
139
        }
140
    }
141
 
142
    .header__search {
143
        padding: 0.5rem;
144
        background-color: #eef3f0;
145
 
146
        &>input {
147
            display: initial;
148
        }
149
    }
150
}