-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystylesheet.css
114 lines (102 loc) · 1.79 KB
/
mystylesheet.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
body{
background-color: rgb(20,20,20);
font-family: courier;
}
p{
margin:20px;
color:aliceblue;
}
a{
color:inherit;
text-decoration:none;
}
a:hover{
color:inherit;
text-decoration: underline;
text-decoration-style: wavy;
}
a:visited{
color:inherit;
}
h2.greeter{
color: aliceblue;
text-align: center;
font-weight: bolder;
font-size: 250%;
background-color: rgb(5,5,5);
border-radius: 7px;
}
div.entry{
padding: 1%;
color:aliceblue;
background-color: rgb(10,10,10);
border-radius: 7px;
}
ul.navBar {
width: 100%;
margin: 0px;
padding: 0px;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background: black;
font-family:monospace;
text-align: left;
}
ul.navBar li h1{
text-align: center;
margin-left:10px;
color:aliceblue;
font-weight: 100
}
ul.navBar ul{
list-style-type: none;
display: inline;
}
ul.navBar ul li a {
display:block;
margin-left:20px;
margin-right: 20px;
padding:5px;
color: green;
text-align: left;
text-decoration: none;
background-color: rgb(5,5,5);
}
ul.navBar ul li a:hover{
color: rgb(255,225,0);
background-color: maroon;
}
#active {
color: maroon;
background-color: rgb(255,225,0);
}
#juan{
color: darkred;
font-weight: 999;
}
#pointer{
color:rgb(255,255,0);
font-size: 30%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#dataType{
color: orange;
}
#comment {
color:green;
font-style: italic;
}
#noBulletList{
list-style: none;
}
#class{
color:maroon;
font-weight: bold;
}
#namespace{
color:cyan;
}