-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
70 lines (59 loc) · 1017 Bytes
/
css.css
File metadata and controls
70 lines (59 loc) · 1017 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
66
67
68
69
70
.dark_html{
font-family: "Roboto Mono";
font-size: 10pt;
background-color: #1a1a1a;
color: #03A63D;
}
.light_html{
font-family: "Roboto Mono";
font-size: 10pt;
background-color: #fff;
color: #1a1a1a;
}
header{
color: #03A63D;
}
button{
font-size: 10pt;
font-family: "Roboto Mono";
margin-right: 5px;
border-radius: 0px;
border-style: solid;
}
button:hover{
cursor: pointer;
font-size: 10pt;
font-family: "Roboto Mono";
margin-right: 5px;
border-radius: 0px;
border-style: solid;
}
.meme{
border-color: #03A63D;
border-width: 2px;
border-style: dotted;
background-color: #fff;
color: #1a1a1a;
}
.meme_dark{
border-color: #03A63D;
border-width: 2px;
border-style: dotted;
background-color: #1a1a1a;
color: #fff;
}
#memebg{
border-radius: 10px;
}
a{
color: #03A63D;
}
a:hover{
color: #006624;
}
#topmenu{
position: fixed;
top: 0px;
left: 0px;
width: 100%;
}