-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
60 lines (56 loc) · 1.05 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
body {
background: rgb(255, 181, 228);
background: radial-gradient(
circle,
rgba(255, 181, 228, 1) 0%,
rgba(211, 225, 243, 1) 100%
);
}
.card {
padding: 50px;
width: 600px;
height: 300px;
display: flex;
justify-content: space-evenly;
background-color: bisque;
border-radius: 10px;
position: relative;
top: 180px;
left: 350px;
box-shadow: 1px 3px 46px 6px rgba(0, 0, 0, 0.67);
}
.card-photo img {
width: 300px;
height: 300px;
border-radius: 50%;
}
.card-text {
padding: 5px;
display: flex;
flex-direction: column;
align-items: space-between;
width: 400px;
height: 400px;
}
.card-title h1 {
font-size: 50px;
background: linear-gradient(
90deg,
rgb(133, 82, 167) 0%,
rgba(202, 22, 22, 1) 54%,
rgba(252, 176, 69, 1) 100%
);
background-clip: unset;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.card-footer {
display: flex;
align-items: center;
justify-content: space-evenly;
}
.event-organizer img {
width: 50px;
height: 50px;
border-radius: 50%;
}