-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (61 loc) · 1.09 KB
/
style.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
@font-face {
font-family: 'consolas';
src: url(consola.ttf);
}
@font-face {
font-family: 'courier';
src: url(courbd.ttf);
}
@font-face {
font-family: 'shm';
src: url(shm-r.otf);
}
body {
background-color: #ccc;
background: url(img/bg.jpg) repeat;
margin: 0px;
overflow: hidden;
background-size: cover;
}
.text-display {
position: relative;
top: 50px;
right: 75px;
align-content: flex-end;
}
.word {
text-align: right;
line-height: 330%;
}
.spelling {
font-family: consolas;
font-size: 60px;
color: white;
text-shadow: 0 0 7px white;
}
.phonetic {
font-family: courier;
font-size: 24px;
color: #9edeff;
text-shadow: 0 0 10px #9edeff;
}
.definition {
font-family: shm;
font-style: italic;
font-size: 24px;
color: white;
text-shadow: 0 0 10px white;
}
.re {
float: right;
width: 500px;
opacity: 0.6;
background-color: transparent;
transition-duration: 0.4s;
border-radius: 10px;
border: 0px;
}
.re:hover {
box-shadow: 0 0 10px white, 0 0 10px white inset;
opacity: 1;
}