-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarwars.css
80 lines (77 loc) · 1.52 KB
/
starwars.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
body {
background-color: #090314;
background-image: url("../../images/pink-sun.jpg");
background-size: cover;
background-attachment: fixed;
}
header {
display: flex;
margin-top: 20px;
margin-bottom: 130px;
margin-right: 20px;
margin-left: 20px;
}
header div {
width: 50%;
}
a {
text-align: left;
font-family: iceland;
text-decoration: none;
font-size: 28px;
color: snow;
}
a:active {
color: grey;
}
a:hover {
text-decoration: none;
color: snow;
}
h1, h2 {
text-align: right;
color: snow;
line-height: 70%;
}
h1 {
font-family: iceland;
font-size: 40pt;
padding: 0px;
}
h2 {
font-family: nico moji;
font-size: 25pt;
padding: 0px;
}
.neon, a:hover {
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #1be600, 0 0 40px #1be600, 0 0 50px #1be600, 0 0 60px #1be600, 0 0 70px #1be600;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #0ef0f8, 0 0 40px #0ef86f, 0 0 50px #0ef86f, 0 0 60px #0ef86f, 0 0 70px #0ef86f, 0 0 80px #0ef86f;
}
}
.card {
opacity: .9;
}
#generator {
margin: auto;
height: 330px;
font-family: iceland;
}
#randomButton {
width: 100%;
font-weight: bold;
font-size: 16px;
margin-top: 10px;
}
#randomSW {
text-align: center;
margin-top: 15px;
font-size: 16pt;
}