-
Notifications
You must be signed in to change notification settings - Fork 2
/
bc.css
92 lines (79 loc) · 2.62 KB
/
bc.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
/*Bookmark Commander by Tom J Demuyt is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
Permissions beyond the scope of this license are available by contacting konijn@gmail.com
Basic Colors :
bluegreen : rgb( 0, 128, 128 )
black : rgb( 0, 0, 0 )
grey : rgb( 192, 192, 192 )
blue : rgb( 0, 0, 128 )
*/
//Link to Vera
@font-face
{
font-family: "Vera";
src: url(VeraMono.ttf) format("truetype");
}
/*Can you tell I like ordered tables in my code ;] */
.border { color: rgb(192,192,192); background: rgb(0,0,128); }
.blue { color: rgb(255,255,255); background: rgb(0,0,128); }
.menu { color: rgb(0,0,0); background: rgb(0,128,128);}
.options { color: rgb(0,0,0); background: rgb(192,192,192);}
.white { color: rgb(255,255,255); background: rgb(0,128,128);}
.selected { color: rgb(0,0,0); background: rgb(0,128,128);}
.paars { color: rgb(223, 0,255); }
.yellow { color: rgb(255,255, 0); }
.js { color: rgb(0,255,0); background: rgb(0,0,128); }
.fcode { color: rgb(192,192,192); background: rgb(0,0,0); }
.speed { color: rgb(255,255,0); }
/* Vera font for textarea's did not work for textarea's b*/
textarea
{
font-family: "Lucida Console", Monaco, monospace;
font-size: inherit;
-webkit-appearance: textfield;
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
border: 0px;
overflow-y: hidden;
overflow-x: hidden;
outline: none;
resize: none;
}
/*Not sure this is required*/
::-webkit-scrollbar
{
height: 0px;
width: 0px;
background-color: inherit;
}
@-webkit-keyframes blink {
0% { opacity: 0 } 50% { opacity: 0 }
50.01% { opacity: 1 } 100% { opacity: 1 }
}
@-webkit-keyframes underblink {
0% { border-bottom-color: silver; }
50% { border-bottom-color: silver; }
50.01% { border-bottom-color: black; }
100% { border-bottom-color: black; }
}
blink {
-webkit-animation: blink 0.7s infinite linear alternate;
-webkit-font-smoothing: antialiased;
}
.blink {
-webkit-animation: blink 0.7s infinite linear alternate;
-webkit-font-smoothing: antialiased;
color: orange;
}
.underblink {
-webkit-animation: underblink 0.7s infinite linear alternate;
-webkit-font-smoothing: antialiased;
display:inline-block;
border-bottom-color:black;
border-bottom-width:2px;
border-bottom-style:solid;
z-index:5;
}
hidden {
color : green;
opacity: 0;
}