forked from prissca/add-to-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (53 loc) · 1022 Bytes
/
style.css
File metadata and controls
66 lines (53 loc) · 1022 Bytes
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
body{
margin:0;
font-family:Verdana, Geneva, Tahoma, sans-serif;
background:#fff;
text-align:center;
}
header{
position:fixed;
display:flex;
background: linear-gradient(to right, #ff7e5f, #feb47b), url('noise-texture.png');
width:100%;
text-align:left;
z-index: index 1000;
transition:all 0.45s ease;
justify-content:space-between;
}
nav{
display:flex;
align-items:center;
}
.navbar{
display:flex;
justify-content:center;
align-items:center;
list-style:none;
column-gap:1rem;
}
.navbar a{
text-decoration:none;
color:black;
}
.home{
margin:1%;
padding:10%;
float:right;
}
.home-img{
float:right;
}
#mark{
background: rgba(0,0,0,0.95);
color:#fff;
}
.footer{
position:fixed;
padding: 1px;
bottom:0;
background: linear-gradient(to right, #ff7e5f, #feb47b), url('noise-texture.png');
width:100%;
text-align:left;
z-index: index 1000;
transition:all 0.45s ease;
}