-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (116 loc) · 1.7 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
115
116
117
118
119
120
121
122
123
124
.nav, .pagination, .carousel, .panel-title a {
cursor: pointer;
}
#sort {
margin-top: 16px;
}
.form-horizontal input.ng-invalid.ng-touched {
background-color: #FCB1B5;
}
.postBox {
background-color: #F9F9F9;
padding: 10px 10px 10px;
margin: 10px 0 10px 0;
-webkit-border-radius: 2px;
border-radius: 2px;
}
#postImg {
height: 150px;
}
#description {
height: 60px;
}
.upvotes {
color: #1DDB1D;
}
.downvotes {
color: red;
}
.animate.ng-enter {
-webkit-animation: enter 1350ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
animation: enter 1350ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
display: block;
position: relative;
}
@-webkit-keyframes enter {
from {
opacity: 0;
height: 0px;
top: -50px;
left: -5px;
}
10% {
left: 45px;
}
20% {
top: 40px;
}
30% {
left: -35px;
}
40% {
top: -30px;
}
50% {
left: 25px;
}
60% {
top: 20px;
}
70% {
left: -15px;
}
80% {
top: -10px;
}
90% {
left: 5px;
}
to {
opacity: 1;
height: 30px;
left: 0px;
top: 0px;
}
}
@keyframes enter {
from {
opacity: 0;
height: 0px;
top: -50px;
left: -5px;
}
10% {
left: 45px;
}
20% {
top: 40px;
}
30% {
left: -35px;
}
40% {
top: -30px;
}
50% {
left: 25px;
}
60% {
top: 20px;
}
70% {
left: -15px;
}
80% {
top: -10px;
}
90% {
left: 5px;
}
to {
opacity: 1;
height: 30px;
left: 0px;
top: 0px;
}
}