-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (87 loc) · 1.84 KB
/
style.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
#cardfinal{
font-family: "Poppins", sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
perspective: 1000px;
background-color: rgb(226, 159, 87);
margin:0;
padding: 0;
box-sizing: border-box;
}
.con{
width: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.25s ease;
}
#card{
transform-style: preserve-3d;
min-height: 80vh;
width: 35rem;
border-radius: 50px;
padding: 0rem 5rem;
box-shadow: 0 20px 20px rgba(0, 0,0, 0.2), 0px 0px 50px rgba(0, 0, 0,0.2);
background-color: rgb(202, 185, 160);
}
.sneaker{
min-height: 2vh;
display: flex;
align-items: center;
justify-content: center;
}
.sneaker img{
width: 15rem;
z-index: 2;
transition: all 0.75s ease-out;
}
.circle{
width: 10rem;
height: 10rem;
background: linear-gradient(
to right,
rgba(211, 212, 213, 0.75),
rgba(8,83,156,0.75)
);
position: absolute;
border-radius: 50%;
z-index: 1;
}
.info h1{
font-size: 2.5rem;
transition: all 0.75s ease-out;
font-family: 'Tilt Warp', cursive;
}
.info h3{
font-size: 4rem;
padding: 10px 0px;
color: #c16363;
font-weight: lighter;
transition: all 0.75s ease-out;
font-family: 'Tilt Warp', cursive;
}
.sizes{
display: flex;
justify-content: space-between;
transition: all 0.75s ease-out;
}
.sty{
padding: 10px;
display: flex;
}
.tab{
display:flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
font-family: 'Teko', sans-serif
}
.navbar-brand{
font-family: 'Teko', sans-serif
}
nav{
background-color: chocolate;
/* padding:0%; */
}