forked from fiskhandlarn/rc3.hackeriet.no
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
101 lines (85 loc) · 1.79 KB
/
styles.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
@font-face {
font-family: "Orbitron";
src: url(Orbitron-VariableFont_wght.ttf);
}
html {
background-color: #212a2e;
color: #F7F8F8;
}
.content {
margin:auto;
max-width:780px;
padding:3em;
}
a {
color: #05B9EC;
/*text-shadow: 0px 0px 3px #6800E7; */
/*text-decoration: none; */
transition: text-shadow 1s;
}
a:hover {
text-shadow: 0px 0px 30px #B239FF;
/*text-shadow: 0px 0px 10px #B239FF;*/
-webkit-text-stroke-width: 0.3px;
-webkit-text-stroke-color: #6800E7;
}
h1 {
margin-top:0;
}
h1,h2,h3 {
font-family: 'Orbitron', sans-serif;
transition: text-shadow 1s;
}
h1 {
text-align: center;
background-image: linear-gradient(to left, #B239FF, #6800E7, #05B9EC, #B239FF, #6800E7, #05B9EC);
-webkit-background-clip: text;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #555;
color: transparent;
font-size: 4em;
margin-bottom:0;
animation: disco 15s linear infinite alternate;
/*font-family: 'Press Start 2P';*/
}
h2,h3 {
color: #05B9EC;
text-shadow: 0px 0px 20px #B239FF;
}
.alert {
border: 3px dashed red;
padding:1em;
}
.cyber-wrap {
postion:relative;
}
.cyber {
background-image: url("cyber_plain.png");
background-repeat: repeat-x;
background-size: contain;
height: 50px;
animation: backgroundScroll 10s linear infinite;
transform: rotate(2deg);
/* position: fixed;*/
width: 100%;
margin-top: 10px;
}
@keyframes backgroundScroll {
from {
background-position: 0 0;
}
to {
background-position: -277px 0;
}
}
@keyframes disco {
0% {
text-shadow: 0px 0px 110px #B239FF;
}
50% {
text-shadow: 0px 0px 110x #6800E7;
}
100% {
text-shadow: 0px 0px 110px #05B9EC;
}
}