-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (102 loc) · 1.79 KB
/
styles.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
* {
box-sizing: border-box;
}
body {
font-family: "outfit";
background-color: #0d192b;
}
.section-container {
height: 100vh;
display: flex;
}
.card {
max-width: 320px;
width: 80%;
text-align: left;
margin: auto;
font-size: 14px;
border-radius: 15px;
background-color: #14253d;
color: hsl(0, 0%, 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
}
.card-img {
background-color: #00fff7;
height: 300px;
border-radius: 10px;
margin: 10px;
}
.card-img img {
max-width: 280px;
width: 100%;
height: 100%;
border-radius: 10px;
}
.card-img svg {
transition: 0.5s ease;
opacity: 0;
position: absolute;
top: 43%;
left: 50%;
transform: translate(-50%, -50%);
}
.card-img:hover img {
opacity: 0.6;
border-radius: 10px;
transition: 0.5s ease;
}
.card-img:hover svg {
opacity: 1;
}
.text-container {
padding: 10px 0;
width: 90%;
}
.text-container h3 {
margin: 0;
}
.text-container p {
color: hsl(215, 51%, 70%);
margin: 0;
padding: 10px 0;
}
.text-symbol {
display: flex;
justify-content: space-between ;
}
.symbol {
display: flex;
justify-content: space-between;
color: hsl(178, 100%, 50%);
}
.creator {
display:flex;
justify-content: flex-start;
align-items: center;
margin-top: 10px;
font-size: 14px;
border-top: solid 2px #2f415b;;
padding: 10px 0 0 0;
}
.creator img {
width: 10%;
border-radius: 50%;
border: solid 1px hsl(0, 0%, 100%);
padding: 0;
margin-right: 10px;
}
.creator p {
padding: 0;
}
.creator span {
color:hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
.card {
max-width:320px;
}
}