_header.scss
2.21 KB
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
// Header
header {
background: #ffffff;
border-bottom: 8px solid #A0AC12;
position: fixed;
top:0;
left:0;
width:100vw;
z-index: 999999999;
@extend .row-f;
.logo {
display: flex;
width: 47.22222%;
float: left;
margin-left: 1.38889%;
margin-right: 1.38889%;
height: 40px;
img{
margin-right: 2rem;
}
}
nav.main-navi {
width: 47.22222%;
float: right;
margin-left: 1.38889%;
margin-right: 1.38889%;
}
}
.header--payoff {
font-size: 1.4rem;
border-left: 1px solid #D9D9D9;
padding: 14px 10px;
margin-left: 10px;
color: $darkGray;
line-height: 1.2em;
white-space: nowrap;
display: none;
@include bp-large {
display: flex;
align-items: center;
padding-left: 2rem;
}
}
.close--header{
border-left: 1px solid #EFEFEF;
padding: 12px 24px;
cursor: pointer;
}
.navigation_right{
display: flex;
align-items:center;
justify-content:center;
}
.saveOffer{
display: flex;
align-items: center;
justify-content: center;
border: 2px solid black;
border-radius: 50%;
margin-right:2.4rem;
position: relative;
cursor: pointer;
width:40px;
height:40px;
@include bp-medium {
border-radius: 4px;
width: 240px;
height:40px;
justify-content: space-between;
}
p{
font-size:1.4em;
padding-right: 15px;
display: none;
@include bp-medium {
display: block;
}
}
img{
padding-left:0;
width:20px;
@include bp-medium {
padding-left:15px;
width:auto;
}
}
&:before{
content: '';
position: absolute;
height: 60px;
width: 1px;
top: -10px;
right: -23px;
}
}
.bigContainer {
max-width: 1360px;
margin-left: auto;
margin-right: auto;
height: 80px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: white;
padding-left: 1.38889%;
padding-right: 1.38889%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
@include bp-large {
height: 96px;
}
&.space {
@include bp-medium {
}
}
}