blob: f4c6f711fab13ff5304fa1d28e88365b97bc0aed (
plain)
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
|
img.textwrap-right {
float: right;
margin: 10px;
}
.well {
margin-top:-20px;
text-align:center;
cursor:pointer;
font-size: 25px;
padding: 15px;
border-radius: 0px !important;
}
.well:hover {
margin-top:-20px;
border:2px solid black;
text-align:center;
cursor:pointer;
font-size: 25px;
padding: 15px;
border-radius: 0px !important;
}
.bg_blur
{
background: url('/static/img/avatar.png');
height: 512px;
background-size: cover;
overflow: visible;
}
.bgblurback {
height: 100%;
}
.fb_wrap {
margin: 0 auto;
padding: 10px;
}
.follow_btn {
text-decoration: none;
height: 20%;
padding: 10px;
background-color: #E5B7CE;
padding-top: 6px;
color: #fff;
text-align: center;
font-size: 20px;
opacity: 1.0;
}
.follow_btn:hover {
text-decoration: none;
background-color: #FE9ACD;
padding: 10px;
padding-top: 6px;
color: #fff;
text-align: center;
font-size: 20px;
border: 4px solid rgba(255, 255, 255, 0.8);
}
.header{
color : #808080;
margin-left:10%;
margin-top:70px;
}
.picture{
height:150px;
width:150px;
top: 75px;
left:-75px;
float: left;
}
.picture_mob{
position: absolute;
width: 35%;
left: 35%;
bottom: 70%;
}
.btn-style{
color: #fff;
background-color: #007FBE;
border-color: #adadad;
width: 33.3%;
}
.btn-style:hover {
color: #333;
background-color: #3D5DE0;
border-color: #adadad;
width: 33.3%;
}
@media (max-width: 767px) {
.header{
text-align : center;
}
.nav{
margin-top : 30px;
}
}
|