-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (101 loc) · 2.38 KB
/
style.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
103
104
105
106
107
108
109
110
111
112
113
114
body {
font-family: 'Poppins', 'OpenSans';
background: #181818;
margin: 10px;
}
.container {
height: 100%;
width: 100%;
}
.container .profilePanel {
height: auto;
width: 100%;
background-color: #FFFFFF;
border-radius: 25px;
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
padding: 10px 0px;
}
.container .profilePanel .profileImg {
vertical-align: middle;
background-color: rgba(0, 0, 0, .1);
border-radius: 50%;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
margin: 0 auto;
vertical-align: middle;
display: inline-block;
}
.container .profilePanel .profileName {
height: auto;
width: auto;
margin: 5px 0px 0px 0px;
}
.container .profilePanel .profileJobs {
width: auto;
height: auto;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.container .profilePanel .profileJobs #profileJob {
background-color: rgba(0, 0, 0, 0.05);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
width: auto;
height: auto;
border-radius: 50px;
padding: 0px 5px;
margin: 10px 0px 0px 10px;
}
.container .profilePanel #profileLoc {
margin: 10px 0px 0px 0px;
}
.container .profilePanel #profileStatus {
text-align: center;
width: 80%;
margin: 10px 0px 0px 0px;
}
.container .profilePanel .socialButtons {
width: auto;
height: auto;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.container .profilePanel .socialButtons .clickButton {
background-color: rgba(0, 0, 0, 0.05);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
width: auto;
height: auto;
border-radius: 50px;
padding: 5px 10px;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
margin: 10px 0px 0px 10px;
}
.container .profilePanel .socialButtons .clickButton #buttonText {
padding: 0px 0px 0px 5px;
margin: 0px;
}
.container .linkButton {
background-color: #FFFFFF;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
align-content: center;
border-radius: 25px;
padding: 20px 10px;
margin-top: 10px;
cursor: pointer;
}
.container .linkButton .buttonText {
margin: 0px 0px 0px 10px;
}