forked from ammarlodhi255/travel-and-tour-agency-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.css
63 lines (63 loc) · 1.25 KB
/
profile.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
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body {
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
font-family: "Raleway", sans-serif;
}
.outer-block {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40em;
height: 35em;
background-color: white;
box-shadow: 2px 2px 6px 6px rgba(0, 0, 0, 0.2);
border-radius: 11px;
padding: 20px 30px;
}
.outer-block .close-btn {
position: absolute;
top: 11px;
right: 11px;
width: 16px;
height: 16px;
background: #888;
color: #eee;
text-align: center;
line-height: 15px;
border-radius: 16px;
cursor: pointer;
}
img{
width: 10em;
border-radius: 50%;
}
.profile-body{
text-align: center;
}
.side-block{
border: 2px solid #8EC5FC;
width: 80%;
margin-left: 10%;
}
.outer-block .profile-body .profile-element button {
height: 44px;
margin: 2%;
border: none;
width: 50%;
color: black;
outline: none;
font-size: 1rem;
cursor: pointer;
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
border-radius: 11px;
}
#cover{
display: none;
}