gbwizard.css
2.81 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
.form-container{
min-height: 450px;
padding-top: 5%;
text-align: center;
}
.avatar-container{
position: relative;
display: block;
width: 100%;
}
.avatar-container img{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.left-border{
border-left: 1px solid #c0c0c0;
}
.right-border{
border-right: 1px solid #c0c0c0;
}
.no-border-radius{
border-radius: 0!important;
}
.upload-btn{
margin-top: 15px;
}
.text-align-right{
text-align: right!important;
}
.btn-transparent{
border: 0!important;
background-color: transparent!important;
}
.btn-transparent:hover{
background-color: rgba(204,204,204,0.2)!important;
}
.btn-change-avatar{
-webkit-box-shadow: none!important;
-moz-box-shadow: none!important;
box-shadow: none!important;
}
.change-photo{
-webkit-animation-name: change-photo;
-moz-animation-name: change-photo;
-o-animation-name: change-photo;
animation-name: change-photo;
}
@keyframes change-photo {
from {
-webkit-transform-origin: left bottom;
-moz-transform-origin: left bottom;
-ms-transform-origin: left bottom;
-o-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 0deg);
-moz-transform: rotate3d(0, 0, 1, 0deg);
-ms-transform: rotate3d(0, 0, 1, 0deg);
-o-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
opacity: 1;
}
50% {
-webkit-transform-origin: left bottom;
-moz-transform-origin: left bottom;
-ms-transform-origin: left bottom;
-o-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -75deg);
-moz-transform: rotate3d(0, 0, 1, -75deg);
-ms-transform: rotate3d(0, 0, 1, -75deg);
-o-transform: rotate3d(0, 0, 1, -75deg);
transform: rotate3d(0, 0, 1, -75deg);
opacity: 0.8
z-index: -1;
}
100% {
-webkit-transform-origin: left bottom;
-moz-transform-origin: left bottom;
-ms-transform-origin: left bottom;
-o-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 0deg);
-moz-transform: rotate3d(0, 0, 1, 0deg);
-ms-transform: rotate3d(0, 0, 1, 0deg);
-o-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
opacity: 0;
z-index: -1;
}
}
.separation-line{
width: 0;
height: 300px;
display: block;
border-left: 1px solid #c0c0c0;
margin-left: 50%;
transition: all 0.3s linear;
}
.col-pull-md-half{
right: 0;
} @media (min-width: 992px){
.col-pull-md-half{
right: 4.1666666666%;
}
}
.padding-top{
padding-top: 20px;
}