-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkyllie-cosmetics.css
109 lines (85 loc) · 1.54 KB
/
kyllie-cosmetics.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #F8F1F4;
font-family: 'Univers LT Std 55 Roman';
}
@font-face {
font-family: 'Univers LT Std 55 Roman';
font-style: normal;
font-weight: normal;
src: local('Univers LT Std 55 Roman'), url('./univers-lt-std-webfont/UniversLTStd.woff') format('woff');
}
li {
list-style-type: none;
}
/*
NAVIGATION
*/
nav {
position: fixed;
right: 0;
top: 0;
left: 0;
display: flex;
justify-content: space-between;
padding: 24px;
border: 1px solid red;
}
.nav__links--list,
.country_picker--wrapper {
display: flex;
align-items: center;
}
.nav__links--list {
position: absolute;
right: 0;
}
.country_picker--wrapper {
height: 4.0625rem;
}
.nav__link {
margin-right: 16px;
}
.country_picker--wrapper {
margin-left: 24px;
}
.country_picker--para {
margin-right: 12px;
font-size: 20px;
}
.nav__link--anchor {
font-size: 24px;
color: #000;
}
.fa-dollar-sign {
font-size: 20px;
border: 1px solid;
border-radius: 50%;
padding: 8px 12px;
color: #000;
}
.logo__wrapper {
position: absolute;
left: 50%;
transform: translate(-50%);
}
.logo {
width: 300px;
}
.middle__nav{
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%);
}
/*
LANDING
*/
#landing {
min-height: 100vh;
margin-top: 10%;
}