-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (124 loc) · 2.36 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
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
body{
background-color: #0D1A2D;
}
.main-container{
border-radius: 20px;
background: #ffffff;
width: 450px;
height: 750px;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
text-align: center;
background-color: #15273F;
box-shadow: 15px 15px 20px #0b1627;
}
.img-container{
display: flex;
align-items: center;
justify-content: center;
padding: 35px 15px 20px 20px;
}
.img{
width: 380px;
border-radius: 25px;
width: 380px;
border-radius: 25px;
}
.icon-view{
opacity: 1%;
}
.img-overlay{
justify-content: center;
align-items: center;
display: flex;
position: absolute;
background-color: hsl(178, 100%, 50%, 60%);
margin: 35px 0px 0px 37px;
border-radius: 25px;
top: 0;
left: 0;
width: 380px;
height: 380px;
z-index: 999;
opacity: 1%;
}
.img-overlay:hover{
opacity: 100%;
cursor: pointer;
transition: opacity 0.5s ease-in-out;
}
.text-container{
text-align: left;
}
.title{
color: white;
text-align: left;
padding: 0px 0px 0px 35px;
font-family: 'Outfit', sans-serif;
}
.title:hover{
color: hsl(178, 100%, 50%);
text-align: left;
padding: 0px 0px 0px 35px;
font-family: 'Outfit', sans-serif;
cursor: pointer;
}
.description{
color: #97ACCB;
justify-content: left;
padding: 0px 45px 0px 35px;
font-family: 'Open Sans', sans-serif;
}
.price-time-container{
display: flex;
align-items: center;
justify-content: space-between;
}
.price{
display: flex;
color: hsl(178, 100%, 50%);
font-family: 'Outfit', sans-serif;
padding: 3px 15px 0px 35px;
align-items: center;
}
.time-left{
color: #97ACCB;
font-family: 'Outfit', sans-serif;
display: flex;
align-items: center;
padding: 3px 35px 0px 0px;
}
.line{
height: 1px;
background: #2F4159;
margin: 0px 35px 0px 35px;
}
.creator-container{
display: flex;
align-items: center;
margin: 15px 0px 0px 35px;
justify-content: left;
}
.avatar{
height: 40px;
border: 1px;
border-color: white;
border-style: solid;
border-radius: 50px;
}
.creator-name{
color: #97ACCB;
margin: 0px 0px 0px 15px;
}
.name{
color:white;
font-family: 'Outfit', sans-serif;
}
.name:hover{
color: hsl(178, 100%, 50%);
cursor: pointer;
}