-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTTRPG.css
51 lines (45 loc) · 989 Bytes
/
TTRPG.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
#mainDiv {
position: absolute;
display: block;
background: linear-gradient(black, red);
top: 0;
left: 0;
width: 100%;
height: auto;
padding-bottom: 50px;
}
.text-div {
position: relative;
display: block;
margin: auto;
max-width: 80%;
color: goldenrod;
font-family: Arial, Helvetica, sans-serif;
font-size: large;
text-shadow: 1px 1px black;
}
a, h2, h3 {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-shadow: 2px 2px 2px black;
}
a {
color: orange;
}
a:hover {
color: yellow;
}
a:visited {
color:darkorange;
}
#graphicDiv {
position: absolute;
display: block;
width: 100%;
height: 100px;
background: repeating-linear-gradient(rgb(233, 6, 6), black);
z-index: 3;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: large;
color:darkgoldenrod;
padding-left: 10%;
}