-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (144 loc) · 4.17 KB
/
style.css
File metadata and controls
144 lines (144 loc) · 4.17 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body{
background-image: url('https://images4.alphacoders.com/785/785969.jpg');
background-size:100% auto;
font-family:"Open Sans", sans-serif;
}
a.nostyle{
color:inherit;
text-decoration:none;
padding:0;
margin:0;
}
div.portfoliocard{
position:relative;
height:400px;
width:540px;
background:rgba(255,255,255,0.9);
border:1px solid rgba(0,0,0,0.7);
box-shadow:0px -1px 3px rgba(0,0,0,0.1),
0px 2px 6px rgba(0,0,0,0.5);
border-radius:6px;
margin:10% auto;
overflow:hidden;
z-index:100;
}
div.portfoliocard div.coverphoto{
width:100%;
height:120px;
background:url('https://png.pngtree.com/thumb_back/fw800/back_pic/00/06/08/37562897b51be79.jpg');
background-position:center center;
border-top-right-radius:5px;
border-top-left-radius:5px;
border-bottom:1px solid rgba(0,0,0,0.1);
box-shadow:inset 0px 3px 20px rgba(255,255,255,0.3),
1px 0px 2px rgba(255,255,255,0.7);
z-index:99;
}
div.portfoliocard div.left_col, div.portfoliocard div.right_col{
float:left;
height:340px;
}
div.portfoliocard div.left_col{
width:40%;
padding-top:85px;
box-sizing:border-box;
}
div.portfoliocard div.right_col{
width:60%;
background:rgba(245,245,245,1);
border-left:1px solid rgba(230,230,230,1);
box-shadow:inset 0px 1px 1px rgba(255,255,255,0.7);
margin-left:-1px;
border-bottom-right-radius:5px;
}
div.portfoliocard div.profile_picture{
width:110px;
height:110px;
background:rgba(255,255,255,1);
position:absolute;
top:65px;
left:40px;
border-radius:100%;
background-image: url('https://scontent-frx5-1.xx.fbcdn.net/v/t1.0-9/64657283_158763991921982_1206689968257236992_n.jpg?_nc_cat=110&_nc_ht=scontent-frx5-1.xx&oh=67161e203f54d813312f1d5ece6c12ef&oe=5D898562');
background-size:100% 100%;
padding:7px;
border:4px solid rgba(255,255,255,1)
}
div.portfoliocard div.right_col h2.name{
font-size:30px;
font-weight:300;
color: rgba(30,30,30,1);
padding:0;
margin:20px 10px 0px 30px;
}
div.portfoliocard div.right_col h3.location{
font-size:15px;
font-weight:300;
color:rgba(170,170,170,1);
padding:0;
margin:-5px 10px 10px 30px;
}
div.portfoliocard ul.contact_information{
margin-top:20px;
padding-left:30px;
list-style-type:none;
}
div.portfoliocard ul.contact_information li{
height:25px;
width:260px;
line-height:25px;
font-weight:300;
font-size:15px;
color:rgba(140,140,140,1);
text-shadow:1px 1px 1px rgba(255,255,255,0.8);
padding:5px 0px;
background-repeat:no-repeat;
background-size:18px 18px;
border-bottom:1px solid rgba(0,0,0,0.1);
box-shadow:0px 1px 1px rgba(255,255,255,0.6);
cursor:default;
}
div.portfoliocard ul.contact_information li:before{
content:"";
width:25px;
height:25px;
display:block;
float:left;
background-position:center;
background-size:18px 18px;
background-repeat:no-repeat;
margin-right:5px;
opacity:0.7;
}
div.portfoliocard ul.contact_information li:hover:before{
opacity:1;
}
div.portfoliocard ul.contact_information li.work:before{
background-image: url('http://schulzmarcel.de/x/icons/case_24.png');
}
div.portfoliocard ul.contact_information li.website:before{
background-image: url('http://schulzmarcel.de/x/icons/globe_24.png');
}
div.portfoliocard ul.contact_information li.mail:before{
background-image: url('http://schulzmarcel.de/x/icons/paper_plane_24.png');
}
div.portfoliocard ul.contact_information li.phone:before{
background-image: url('http://schulzmarcel.de/x/icons/phone_24.png');
}
div.portfoliocard ul.contact_information li.resume:before{
background-image: url('http://schulzmarcel.de/x/icons/inbox_24.png');
}
div.portfoliocard div.followers, div.portfoliocard div.following{
margin:15px 0px 0px 35px;
font-weight:300;
font-size:16px;
color:rgba(30,30,30,1);
}
div.portfoliocard div.follow_count{
font-weight:400;
font-size:25px;
color:rgba(140,140,140,1);
}
p{
margin: 10;
}