-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpa.css
84 lines (78 loc) · 1.25 KB
/
pa.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
/*Give the background the PA BG color.*/
body {
background-color:#212121;
color:#E0E0E0;
font-family:Inconsolata;
}
p {
margin-left:30px;
}
.mpInfo{
font-size:20px;
display:none;
padding-left:15px;
}
/*mainpage info*/
/*line boreders*/
.PABorder{
border-top: 3px dashed #ffffff;
color: rgba(0,0,0,0)
}
/*headings*/
h3{
font-weight:normal;
}
#EditorStuff{
display:none;
}
/*INPUT*/
/*Make any buttons look like PA ingame buttons.*/
/*First up, stuff to apply to all buttons*/
button{
padding-top:5px;
padding-bottom:5px;
padding-right:20%;
border: none;
font-size:20px;
text-transform:uppercase;
}
/*Now make it change color.*/
button {
background-color:#212121;
color:white;
}
button:hover{
background:#ffffff;
color:black;
}
/*Make color input look square.*/
.ThemeColor{
width:25px;
height:25px;
border:none;
right:5px;
}
#storage {
display:none;
}
/* okay, lets make the title actually look good */
#maintitle {
font-size:50px;
text-align:center;
font-weight:bold;
}
#smalltext {
font-size:30px;
}
/* level blocks in the list */
.levelBlockStats {
font-size:75%
}
.levelBlock {
padding:5px;
background-color:rgba(255, 255, 255, 0.05);
}
.levelBlockDelete {
float:right;
padding:5px
}