-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsave_info.css
86 lines (75 loc) · 1.46 KB
/
save_info.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
body {
font-family: sans-serif;
display: flex;
align-items: center;
justify-content: space-around;
min-height: 100vh;
background-color: #f0f0f0;
background-image: url("background");
background-repeat: no-repeat;
background-size: cover;
}
img{
width: 200px;
height: 180px;
border-radius: 100px;
object-fit: none;
position: relative;
left: -50px;
top: -120px
}
h1 {
text-align: center;
color: #000000;
position: absolute;
top: 30px;
left: 50%;
transform: translateX(-50%);
}
.save_det{
background-color: #f0f0f0;
padding: 30px 70px;
width: 700px;
height: 350px;
border-radius: 50px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
letter-spacing: 1px;
position: relative;
right: 70px;
line-height: 2;
font-size: 20px;
}
.menu {
position: absolute;
top: 30px;
right: 20px;
}
.hamburger-menu {
width: 50px;
height: 35px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.line {
width: 100%;
height: 3px;
background-color: #000;
}
#backButton{
position: absolute;
top: 20px;
right: 90px;
background-color: #000000;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}