-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (95 loc) · 2.48 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
body {
font-family: 'Open Sans', sans-serif;
font-size: 12pt;
}
.bubl {
position: relative;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
background:red;
color:#fff;
border:2px #fff solid;
background-color: #0066FF;
background-image: -webkit-gradient(linear, left top, left bottom, from(#0066FF), to(#0078BB)); /* Saf4+, Chrome */
background-image: -webkit-linear-gradient(top, #0066FF, #0078BB); /* Chrome 10+, Saf5.1+, iOS 5+ */
background-image: -moz-linear-gradient(top, #0066FF, #0078BB); /* FF3.6 */
background-image: -ms-linear-gradient(top, #0066FF, #0078BB); /* IE10 */
background-image: -o-linear-gradient(top, #0066FF, #0078BB); /* Opera 11.10+ */
background-image: linear-gradient(top, #0066FF, #0078BB);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#0066FF', EndColorStr='#0078BB');
-webkit-box-shadow: 0px 2px 4px #000000; /* Saf3-4 */
-moz-box-shadow: 0px 2px 4px #000000; /* FF3.5 - 3.6 */
box-shadow: 0px 2px 4px #000000; /* Opera 10.5, IE9, FF4+, Chrome 10+ */
display:inline-block;
padding:2px 2px 2px 2px;
margin:3px;
height: 200px;
width: 200px;
text-align: justify;
font-size: 15px;
}
.controls {
cursor: pointer;
cursor: hand;
}
.star {
font-size: 30px;
position: absolute;
top: 5px;
right: 45px;
}
.star-true:after {
content: "★";
}
.star-false:after {
content: "☆";
color: silver;
}
.remove:after {
position: absolute;
left:50px;
content: "x";
font-size:30px;
color: red;
}
.bubleContent{
position: absolute;
top:35px;
left: 15%;
height:130px;
width:70%;
margin: auto;
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
overflow: hidden;
}
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.example-enter {
opacity:0;
-webkit-animation:fadeIn ease-in-out 1;
-moz-animation:fadeIn ease-in-out 1;
animation:fadeIn ease-in-out 1;
-webkit-animation-fill-mode:forwards;
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;
-webkit-animation-duration:0.4s;
-moz-animation-duration:0.4s;
animation-duration:0.4s;
}
.example-enter.example-enter-active {
opacity: 1;
}
.example-leave {
opacity: 1;
transition: opacity .3s ease-in;
}
.example-leave.example-leave-active {
opacity: 0.01;
}