-
Notifications
You must be signed in to change notification settings - Fork 0
/
stoolshit.css
120 lines (119 loc) · 2.74 KB
/
stoolshit.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
115
116
117
118
119
120
/* HOLY FUCK GOD BLESS SUBLIME FOR ITS AMAZINGNESS AND AMAZINGNESS */
body {
margin: 0px;
}
div#title {
padding-top: 80px;
padding-bottom: 20px;
padding-left: 10px;
font-family: 'Press Start 2P', sans-serif;
font-size: 32px;
color: #fff;
background-color: #33cc66;
}
span#navs{
font-size: 16px;
float:right;
padding-top: 16px;
padding-right: 15px;
}
div#illuminati1 {
background-image: url('beards/illuminati5.gif');
background-color: #afebc3;
height: 21px;
animation: traingularscroll 1s infinite;
-webkit-animation: traingularscroll 1s infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
div#illuminati1a {
background-image: url('beards/illuminati5.gif');
height: 21px;
animation: traingularscroll 1s infinite;
-webkit-animation: traingularscroll 1s infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
div#illuminati2 {
background-image: url('beards/illuminati6.gif');
background-color: #afebc3;
height: 21px;
animation: traingularscrollbck 1s infinite;
-webkit-animation: traingularscrollbck 1s infinite;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
div#socialmedias {
font-family: 'Varela Round', sans-serif;
letter-spacing: -0.5px;
padding-left: 20px;
padding-top: 0px;
padding-bottom: 0px;
color: #fff;
font-style: italic;
background-color: #afebc3;
}
div#socialmedias:hover {
padding-top: 10px;
padding-bottom: 10px;
}
a#navlink:hover {
color: #afebc3;
}
a:link {
text-decoration: none;
color: #fff;
padding-right: 5px;
}
a#tittle:link {
padding-right:15px;
padding-bottom: 15px;
}
a#tittle:hover {
color: #afebc3;
}
a:visited {
text-decoration: none;
color: #fff;
}
a#tweet:hover {
text-decoration: none;
color: #6BD8FF;
padding-right: 10px;
padding-left: 5px;
}
a#tumble:hover {
text-decoration: none;
color: #4D52A0;
padding-left: 10px;
padding-right: 10px;
}
a#octocat:hover {
text-decoration: none;
color: #CF35D6;
padding-left: 10px;
padding-right: 10px;
}
a#itch:hover {
text-decoration: none;
color: #FC6274;
padding-left: 10px;
}
div, span {
-webkit-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
a {
-webkit-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}
@keyframes traingularscroll {
0% { background-position:0%,0%;}
100% { background-position:-21px,21px;}
}
@keyframes traingularscrollbck {
0% { background-position:0%,0%;}
100% { background-position: 21px, -21px;}
}