-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (58 loc) · 1.21 KB
/
style.css
File metadata and controls
60 lines (58 loc) · 1.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
.container{
position: relative;
height: 90vh;
width: 90%;
left: 5%;
background-color: beige;
box-shadow: 0px 1px 8px 0px black;
text-align: center;
}
.basket{
position: absolute;
height: 50px;
width: 100px;
bottom: 10%;
left: 30%;
background-color: red;
box-shadow: 0px 1px 8px 0px black;
}
.btn{
display: inline-block;
padding: 15px;
border: 1px solid black;
color: white;
font-size: 2em;
text-align: center;
color: #fff !important;
text-transform: uppercase;
text-decoration: none;
background: #ed3330;
border-radius: 5px;
transition: all 0.4s ease 0s;
}
.btn:hover{
background: gray;
letter-spacing: 1px;
-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
transition: all 0.4s ease 0s;
}
.topbar{
text-align: center;
padding: 5px;
font-family: sans-serif;
font-size: 1.5em;
}
.baddy{
position: absolute;
height: 100px;
width: 100px;
top: 0;
left: 0;
background-color: blue;
color: white;
font-size: 2em;
line-height: 100px;
text-align: center;
}