-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (49 loc) · 1 KB
/
style.css
File metadata and controls
54 lines (49 loc) · 1 KB
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
body{
margin: 0;
padding: 0;
box-sizing: border-box;
background-image: url("gang2.png");
background-size: cover;
}
.container{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.position{
display: flex;
max-width: 100vw;
justify-content: space-between;
}
.card{
position: relative;
width: 320px;
height: 420px;
margin-right: 2rem;
background-color: rgba(221, 197, 197, 0.1);
border-top: 1px solid rgba(216, 214, 214, 0.2);
border-left: 1px solid rgba(216, 214, 214, 0.2);
box-shadow: 20px 20px 50px rgba(0, 0, 0,0.4);
border-radius: 16px;
backdrop-filter: blur(8px);
}
.content{
padding: 20px;
text-align: center;
}
.image{
width: 100px;
height: 100px;
border-radius: 16px;
margin-top: 3.5rem;
}
h1{
position: absolute;
font-size: 94px;
color: rgba(87, 84, 84,0.4);
margin-top: -1rem;
}
h3{
color: wheat;
}