-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
170 lines (144 loc) · 2.56 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
/*
Pittab Site Style Betterificator 1.2
Colour Scheme: Catppuccin Mocha
License: You can use this in whatever way you want, unless what you want to do is barred. What you can't do: you cannot claim it as your own invention unless you have modified it in some way other than changing the name
One thing I must ask is that this block is never deleted from the file so the license is always available for reference
Something to know: You'll want to put the content of your page in a content div, so the rounded box with the content of the site works
*/
/*////*/
/*body*/
body{
font-family:sans-serif;
font-size:16px;
background-color:#11111b;
color:#cdd6f4;
margin:50px;
}
/*//////////////////////////////////*/
/*content (put page content in this)*/
.content{
font-family:sans-serif;
font-size:16px;
background-color:#1e1e2e;
color:#cdd6f4;
margin:70px;
padding:50px;
border-radius:32px;
}
/*////////*/
/*headings*/
h1{
font-size:32px;
font-weight:800;
}
h2{
font-size:24px;
font-weight:650;
}
h3{
font-size:18px;
font-weight:600;
}
h4{
font-size:16px;
font-weight:550;
}
h5{
font-size:14px;
font-weight:500;
}
h6{
font-size:12px;
font-weight:450;
}
/*///////////////////*/
/*paragraphs and bold*/
p{
font-weight:550;
margin:auto;
}
b,strong{
font-family:verdana;
font-weight:900;
}
/*////*/
/*code*/
code{
font-family:monospace;
display: flex;
padding:12px;
margin-top:10px;
margin-bottom:10px;
border-radius:12px;
font-size:14px;
background-color:#11111b;
color:#cdd6f4;
font-weight:650;
}
/*///////*/
/*anchors*/
a{
text-decoration:none;
color:#cdd6f4;
font-weight:650;
margin-top:10px;
margin-bottom:10px;
}
a:hover{
color:#a6adc8;
}
/*////*/
/*list*/
li{
margin:10px;
}
/*///////*/
/*buttons*/
button{
background-color:#181825;
color:#cdd6f4;
border-width:0px;
border-radius:12px;
font-family:sans-serif;
font-weight:650;
font-size:16px;
padding:10px;
margin-top:10px;
margin-bottom:10px;
}
button:hover{
background-color:#1e1e2e;
}
/*///////*/
/*spacers*/
spacer{
display: block;
display: block;
padding:2%;
}
minispacer{
display: block;
padding:0.5%;
}
/*//////*/
/*inputs*/
input, textarea{
border-radius:8px;
font-family:sans-serif;
font-weight:550;
font-size:16px;
border:none;
padding:12px;
background-color:#181825;
color:#cdd6f4;
}
input:focus, textarea:focus{
border-radius:8px;
font-family:sans-serif;
font-weight:550;
font-size:16px;
border:1px solid #cdd6f4;
padding:12px;
background-color:#181825;
color:#cdd6f4;
}