-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
155 lines (149 loc) · 3.31 KB
/
main.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
*{
padding:0;
margin:0;
}
body{
background-color: #FFF8F0;
padding:0;
}
.nav-bar{
display:flex;
background-color: #0D0C1D;
color:#FFF8F0;
padding:1.7rem;
font-size:1.3rem;
align-items:center;
}
.nav-items{
display:flex;
justify-content: space-around;
width:54vh;
margin-right:6.3rem;
}
.nav-head{
font-family: Georgia;
font-size:3.5rem;
width:50vh;
margin-right:20rem;
animation: lights 4s 800ms linear infinite;
}
#shop, #sign, #contact, #order, #cart{
text-decoration: none;
color:#FFF8F0;
}
#shop:hover, #sign:hover, #contact:hover, #order:hover, #cart:hover{
color:#A26769;
font-size:1.5rem;
}
.nav-cart{
display: flex;
position: relative;
right:2rem;
}
#order{
margin-right:1.2rem;
}
.hero-sec{
background-image: url("img/hero.jpg");
background-size: contain;
background-repeat: no-repeat;
height:150vh;
}
@keyframes lights {
0% {
color: #A26769;
text-shadow:
0 0 1em hsla(320, 100%, 50%, 0.2),
0 0 0.125em hsla(320, 100%, 60%, 0.3),
-1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
}
30% {
color: #A26769;
text-shadow:
0 0 1em hsla(320, 100%, 50%, 0.5),
0 0 0.125em hsla(320, 100%, 60%, 0.5),
-0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
}
40% {
color: #A26769;
text-shadow:
0 0 1em hsla(320, 100%, 50%, 0.5),
0 0 0.125em hsla(320, 100%, 90%, 0.5),
-0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
}
70% {
color: #A26769;
text-shadow:
0 0 1em hsla(320, 100%, 50%, 0.5),
0 0 0.125em hsla(320, 100%, 60%, 0.5),
0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
-0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
}
100% {
color: #A26769;
text-shadow:
0 0 1em hsla(320, 100%, 50%, 0.2),
0 0 0.125em hsla(320, 100%, 60%, 0.3),
1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
-1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
}
}
.hero-head{
font-size:4.3rem;
color:#A26769;
font-weight: 700;
text-shadow: 4px 4px #FFF8F0;
padding:2rem;
margin-left:4rem;
padding-top:9rem;
}
.logo-box{
background-color: #A26769;
height:40vh;
width:40vh;
position: relative;
left:160vh;
bottom:58vh;
}
.logo-box img {
height:24vh;
position:absolute;
top:3rem;
left:1.3rem;
border-radius:1rem;
}
#shop-btn{
font-size:3rem;
font-family:Georgia;
padding:1.4rem;
border-radius: 1rem;
background-color: #0D0C1D;
color:#A26769;
position:relative;
left:30vh;
}
#shop-btn:hover{
text-shadow: 2px 2px #FFF8F0;
font-size:3rem;
}
.footer{
background-color: #0D0C1D;
color:#FFF8F0;
font-size:1rem;
display:flex;
align-items: center;
height:10vh;
position:relative;
bottom:8vh;
}
#rights{
position: relative;
left:15vh;
}
#mail{
position: relative;
left:120vh;
}