-
Notifications
You must be signed in to change notification settings - Fork 1
/
profile_page4.css
102 lines (99 loc) · 1.73 KB
/
profile_page4.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Raleway', sans-serif;
}
main{
min-height: 100vh;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.profile_page4{
background: #F5F1F1;
min-height: 95%;
width: 80%;
border-radius: 0;
z-index: 2;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
display: flex;
}
.profile_page4 .link:hover{
color: #fff;
cursor: pointer;
}
.dashboard{
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
background: #D47EA5;
justify-content: space-evenly;
border-radius: 0 15px 15px 0;
color: #6E3659;
padding: 100px auto;
}
.user{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.user h4{
font-size: 20px;
padding: 20px 0 0 0;
}
.user img{
/* width: 100px; */
width: 20%;
height: auto;
border-radius: 50%;
padding-top: 20px;
}
.user a{
text-decoration: none;
color: #fff;
font-size: 30px;
}
.link{
display: flex;
margin: 2rem 0rem;
padding: 1rem 5rem;
align-items: center;
text-align: center;
}
.link img{
color: #fff;
width: 26%;
padding: 0 16px 0 0;
}
.link a{
text-decoration: none;
color: #6E3659;
}
.connect{
flex: 2;
}
.row{
display: flex;
}
.cnct{
font-size: 30px;
text-align: center;
padding: 20px;
}
.column{
flex: 50%;
padding: 70px;
font-size: 25px;
}
.column h2{
margin: 40px;
text-align: center;
}
.column p{
padding: 10px;
text-align: center;
}