-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsite.css
115 lines (94 loc) · 2.07 KB
/
site.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
115
.pointer {
cursor: pointer;
}
#loading-bar .bar {
position: relative;
}
.fixed-panel,
.fixed-panel-test {
min-height: 200;
max-height: 200;
overflow-y: auto;
perspective: 100%;
}
.fixed-panel-test {
min-height: 300;
max-height: 300;
overflow-y: auto;
perspective: 100%;
}
/*http://callmenick.com/post/css-transitions-transforms-animations-flipping-card*/
.card {
position: relative;
text-align: center;
transform-style: preserve-3d;
transition: all 1.0s linear;
backface-visibility: hidden;
transform-style: preserve-3d;
transition: 0.5s;
}
.card__front,
.card__back {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.card__front,
.card__back {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.card__back {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
.card.effect__click.flipped .card__front {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
.card.effect__click.flipped .card__back {
-webkit-transform: rotateY(0);
transform: rotateY(0);
}
.card_back_color {
background-color: white;
}
.margin-right-5 {
margin-right: 5px;
}
.margin-left-5 {
margin-left: 5px;
}
.margin-right-10 {
margin-right: 10px;
}
.margin-left-10 {
margin-left: 10px;
}
.margin-bottom-10 {
margin-bottom: 10px;
}
.margin-top-10 {
margin-top: 10px;
}
.add-on .input-group-btn>.btn {
border-left-width: 0;
padding: 10px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* stop the glowing blue shadow */
.add-on .form-control:focus {
box-shadow: none;
-webkit-box-shadow: none;
border-color: #cccccc;
}
.panel-heading {
background-color: #337ab7 !important;
color: #ffffff !important;
font-weight: bold;
}