-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
188 lines (158 loc) · 3.01 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
margin: 0;
min-height: 100vh;
padding: 0;
}
header, .header_wrapper {
width :100%;
}
.hero_banner {
align-items: center;
/* background: linear-gradient(45deg, rgb(202, 57, 32), rgb(90, 18, 158)); */
background: black;
display: flex;
flex-direction: column;
height: 120px;
justify-content: center;
width: 100%;
}
.hero_banner h1, .hero_banner h3 {
color: white;
font-family: 'Courier New', Courier, monospace;
margin: 0;
text-align: center;
}
.ancient_font {
font-family: 'MedievalSharp', cursive;
}
.sexy_font {
font-family: 'Playball', cursive;
}
.error {
background: red;
border-radius: 4px;
bottom: 10px;
display: flex;
flex-direction: column;
padding: 15px;
position: fixed;
right: 10px;
z-index: 100;
}
.error_btn {
margin-left: auto;
margin-bottom: 0;
margin-top: -8px;
margin-right: -10px;
}
.error_text {
color: white;
font-family: monospace;
letter-spacing: -0.5px;
font-size: 14px;
}
.footer {
background: black;
height: 60px;
margin-top: auto;
width: 100%;
}
.footer_content {
color: white;
}
.title_section {
display: flex;
flex-direction: row;
justify-content: space-around;
padding: 20px;
}
.attribute_section .stats_wrapper {
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 20px;
}
.attribute_section .stats_wrapper input{
margin: 0 0 0 5px;
}
.attribute_section .stats_wrapper input:first-of-type{
margin: 0 40px 0 5px;
}
.attributes_wrapper {
display: grid;
grid-template-rows: 1fr 1fr;
grid-template-columns: 70px 1fr;
grid-row-gap: 2px;
margin: auto;
width: fit-content;
}
.skills_section {
align-items: center;
display: flex;
flex-direction: column;
margin-top: 30px;
}
.available_points_wrapper {
margin-bottom: 15px;
}
.skills_wrapper{
display: grid;
grid-row-gap: 2px;
grid-template-columns: 140px 1fr;
}
.unique_section {
margin: 10px 5%;
}
.unique_wrapper h5 {
font-size: 1.2em;
}
.unique_wrapper ul {
list-style: none;
}
.unique_wrapper strong {
font-family: 'Playball', cursive;
}
.description_section {
margin: 10px 5%;
}
.description_text {
font-size: 1.15em;
}
.description_text::first-letter {
float: left;
font-size: 2em;
line-height: 0.5em;
}
.submit_section {
margin: 10px 5%;
}
.submit_btn_wrapper {
margin-bottom: 30px;
width: 100%;
}
.submit_btn_wrapper button {
background: #9a9aaa;
border: none;
border-radius: 8px;
box-shadow: 2px 2px 15px -2px black;
color: white;
display: block;
font-family: 'Playball', cursive;
font-size: 1.2em;
margin: 0 auto;
padding: 20px;
text-shadow: 3px 3px 10px black;
}
.submit_btn_wrapper button:hover {
background: #6363af;
}
@media print {
header, .submit_section, .footer {
display: none;
}
}