-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.php
127 lines (125 loc) · 2.18 KB
/
css.php
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
<style>
body {
background-color: black;
color: yellow;
font-family: 'Press Start 2P', cursive;
margin: 1em;
padding: 1em;
line-height: 1em;
font-size:1.25em;
}
h1, h2 {
text-align: center;
line-height: 2em;
}
#character-name{
margin: 2em;
}
h3 {
line-height: 2em;
}
.button{
background-color: yellow;
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
float: left;
font-size: 16px;
margin: 1em;
font-family: 'Press Start 2P', cursive;
}
input, select, textarea {
font-family: 'Press Start 2P', cursive;
font-size: 100%;
padding: 2em;
margin: 1em;
}
input[type="radio"]:checked+label {
border: 3px solid yellow;
padding: .5em;
}
input[type='radio'] {
opacity: 0;
margin:.25em;
}
label {
width: auto;
}
.gen-field{
display: flex;
flex-wrap: wrap;
margin: 2em;
flex-direction: column;
}
.invisible{
opacity: 0;
visibility:hidden;
transition:visibility 0.3s linear,opacity 0.3s linear;
max-height: 0;
}
.visible{
opacity: 1;
visibility:visible;
transition:visibility 0.3s linear,opacity 0.3s linear;
max-height: 5000px;
}
.attributes{
display: flex;
flex-wrap: wrap;
margin: 1em;
}
#pLevel-div{
max-width: 30%;
margin: 2em;
display: inline-flex;
}
#pGender-div{
max-width: 40%;
margin: 2em;
display: inline-flex;
}
#next-button-div{
position: fixed;
bottom: 0;
right: 0;
}
#Character-Description{
margin: 1em;
line-height: 1.5em;
margin-bottom: 2em;
}
.attributes{
font-size: .7em;
line-height: .8em;
}
/* New CSS */
#walletNum{
font-size: .25em;
text-align: right;
}
@media only screen and (max-width: 600px) {
body {
font-size:.8em;
}
.attributes{
font-size: .5em;
line-height: 1.75em;
}
input, select, textarea {
max-width: 90%;
font-size: 80%;
}
h1, h2, h3 {
line-height: 1.2em;
}
#character-name{
margin: .5em;
}
#pGender-div{
max-width: 90%;
}
}
</style>