forked from fmunoz-geo/WebGenWFRP4Ed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (103 loc) · 1.67 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
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
121
@import url('https://fonts.googleapis.com/css?family=Germania+One|Space+Mono');
html,
body {
min-width: 60ch;
max-width: 60%;
height: 100%;
margin: auto;
font-family: 'Space Mono', monospace;
font-size: 0.9em
}
html {
background-color: #fff
}
h1 {
font-family: 'Germania One', cursive;
font-size: 3em;
text-align: center
}
th,
td {
padding: 0.4em;
text-align: center
}
th {
background-color: black;
color: white;
}
button {
background-color: black;
color: white;
padding: 0.8em;
margin: 0.8em;
border-radius: 0.2em;
border: none;
}
button:hover {
background-color: red;
color: black;
}
p#Acknowledgements {
position: absolute;
bottom: 0;
margin: auto;
font-size: 0.8em
}
#menu_bar {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
margin: 0.4em
}
#options {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
#generate {
background-color: #eee;
box-shadow: 0em 0em 0.2em 0em;
border-radius: 0.05em;
padding: 0.8em;
margin: 1em
}
#stat_block {
background-color: #eee;
box-shadow: 0em 0em 0.2em 0em;
border-radius: 0.1em;
margin: 1em;
}
#stat_header {
font-family: 'Germania One', cursive;
font-size: 2em;
background-color: black;
color: white;
border-radius: 0.2em 0.2em 0 0;
padding: 0.4em;
display: flex;
flex-wrap: wrap;
font-weight: bold;
}
#skill_header {
background-color: black;
color: white;
padding: 0.6em;
display: flex;
flex-wrap: wrap;
margin: 0.4em 0 0.4em 0;
font-weight: bold;
font-size: 1.2em
}
#skillsB,
#trappingsB,
#talentsB,
#xpB,
#fateresilienceB {
padding: 1em;
}
table {
width: 100%;
}
span {
line-height: 1.4em
}