-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyaccount.css
48 lines (47 loc) · 894 Bytes
/
myaccount.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
.heading{
width: 100%;
height: 110px;
background-color: green;
color: white;
text-align: center;
display: grid;
justify-content: center;
align-items: center;
}
.heading>p{
display: flex;
align-items: center;
margin: auto;
width: 60%;
height: 100%;
justify-content: space-between;
}
.heading>p>span>a{
color: white;
}
.heading>p>span>a:hover{
text-decoration-line: underline;
}
.myaccount{
width: 100%;
height: 800px;
background-color: transparent;
padding: 0px;
margin: 0%;
}
.logout{
width: 5%;
height: 35px;
background-color: white;
color: green;
border: 2px solid green;
border-radius: 10px;
margin-top: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.logout:hover{
background-color: #3B5998;
color: black;
}