-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (52 loc) · 724 Bytes
/
styles.css
File metadata and controls
65 lines (52 loc) · 724 Bytes
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
#editor {
font-family: Times;
}
.ni-b {
font-weight: bold;
}
.ni-i {
font-style: italic;
}
.ni-u {
text-decoration: underline;
}
.ni-l {
text-align: left;
}
.ni-c {
text-align: center;
}
.ni-r {
text-align: right;
}
.ni-ele {
margin: 0;
padding: 0;
}
.ni-ele-i {
display: inline;
}
.ni-ele-it {
display: inline;
}
.ni-ele-p {
display: block;
margin: 1em 0;
}
.ni-ele.pt {
display: block;
}
.ni-cursor {
display: inline-block;
position: absolute;
height: 16px;
padding-right: 2px;
margin-left: -1px;
background-color: rgba(255,0,0,1.0);
animation: blink 1s ease-in-out 0s infinite;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}