-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (53 loc) · 1.65 KB
/
style.css
File metadata and controls
56 lines (53 loc) · 1.65 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
a:hover {
color: #DC143C;
text-shadow: 2px 0 0 orange, -2px 0 0 orange, 0 2px 0 orange, 0 -2px 0 orange, 2px 2px orange, -2px -2px 0 orange, 2px -2px 0 orange, -2px 2px 0 orange;
letter-spacing: 3px;
background-color: orange;
padding:5px;
animation: blink 1.5s infinite
}
@keyframes blink {
50% {
opacity: .6;
}
}
a:visited {
color: #c25a2e ;
}
a{color:white; text-decoration: none;}
#logo { float:right; padding-top: 50px; padding-right: 2%; height: auto; width: 8%;}
.tags { margin-bottom: 10px; font-size: 0.7em; float:left; width:90%; }
.results { clear:both; padding-top: 200px; }
.tag { float:left; margin-right: 20px; padding:5px; margin-bottom: 3px; }
.tag:hover {
color: #DC143C;
text-shadow: 2px 0 0 orange, -2px 0 0 orange, 0 2px 0 orange, 0 -2px 0 orange, 2px 2px orange, -2px -2px 0 orange, 2px -2px 0 orange, -2px 2px 0 orange;
background-color: orange;
padding:5px;
}
.tag.active {
color: #DC143C;
text-shadow: 2px 0 0 orange, -2px 0 0 orange, 0 2px 0 orange, 0 -2px 0 orange, 2px 2px orange, -2px -2px 0 orange, 2px -2px 0 orange, -2px 2px 0 orange;
background-color: orange;
padding:5px;
}
html {
background-color: rgb(23,55,94) /*{a-body-background-color}*/;
border-color: #dddddd /*{a-body-border}*/;
color: #ffffff /*{a-body-color}*/;
text-shadow: 1px /*{a-body-shadow-x}*/ 2px /*{a-body-shadow-y}*/ /*{a-body-shadow-radius}*/ #000000 /*{a-body-shadow-color}*/;
font-size: 1.7em;
font-weight: bold;
line-height: 1.3;
font-family: 'Nunito', sans-serif;
}
#tf {
width: 100%;
height: 200px;
/*border: solid 1px yellow;*/
position: fixed;
top: 0;
left: 0;
background-color: rgb(23,55,94) ;
border-bottom: solid 2px white;
}