-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.css
More file actions
93 lines (76 loc) · 1.46 KB
/
main.css
File metadata and controls
93 lines (76 loc) · 1.46 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
body {
font-family: arial, sans-serfif;
font-size: 1.0em;
line-height: 1.5em;
}
h1 {
color: darkred;
}
h2 {
color: darkblue;
}
label {
font-weight: bold;
color: darkgreen;
}
div.float-left {
padding: 10px;
float: left;
}
li.ng-enter {
-webkit-animation: lightSpeedIn 0.5s;
animation: lightSpeedIn 0.5s;
}
h3.ng-enter {
-webkit-animation: lightSpeedIn 0.5s;
animation: lightSpeedIn 0.5s;
}
span.ng-enter {
-webkit-animation: fadeInRightBig 0.5s;
animation: fadeInRightBig 0.5s;
}
div.header.ng-enter {
-webkit-animation: fadeInRightBig 0.5s;
animation: fadeInRightBig 0.5s;
}
div.ng-enter {
-webkit-animation: bounceIn 0.5s;
animation: bounceIn 0.5s;
}
div.ng-leave {
-webkit-animation: bounceOutLeft 1.0s;
animation: bounceOutLeft 1.0s;
}
img.thumbnail {
max-width: 150px;
max-height: 150px;
padding: 5px 5px 20px 5px;
border: 1px solid #bfbfbf;
background-color: white;
box-shadow: 2px 2px 3px #aaaaaa;
}
br.clear-all {
clear: both;
}
.wordwrap
{
/* wrap long text and urls */
white-space: pre; /* CSS 2.0 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3.0 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -moz-pre-wrap; /* Mozilla */
word-wrap: break-word; /* IE 5+ */
}
.darkred {
color: darkred;
}
.darkgreen {
color: darkgreen;
}
.darkblue {
color: darkblue;
}
.white {
color: white;
}