-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathporta.css
55 lines (55 loc) · 1.19 KB
/
porta.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background:url("bg.jpg") #030728 no-repeat center;
}
.car-list .car-item{
color: #fff;
width: 400px;
padding: 35px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 8px;
backdrop-filter: blur(30px);
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.car-list .car-item .user-image{
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 40px;
border: 3px solid #fff;
padding: 4px;
}
.car-list .car-item .user-profession{
font-size: 1.15rem;
color: #e3e3e3;
font-weight: 500;
margin: 14px 0 40px;
}
.car-list .car-item .message-button{
font-size: 1.25rem;
padding: 10px 35px;
color: #03072b;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
background: #fff;
border: 1px transparent;
transition: 0.2s ease;
}
.car-list .car-item .message-button:hover{
background: rgba(255, 255, 255, 0.1);
border: 1px #fff;
color: #fff;
}