-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements.css
More file actions
32 lines (25 loc) · 914 Bytes
/
elements.css
File metadata and controls
32 lines (25 loc) · 914 Bytes
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
/* This file defines how custom elements will look like, setting CSS that breaks main nekoweb site on purpose is prohibited and may result in ban and site deletion! */
/* Must start with ".site-box". Change how your website will appear on main nekoweb site: https://lune.dimden.dev/405a44b7e5.png */
.site-box {
text-align: center;
background-image: url(/static/assets/cookiebox.png); /* Only nekoweb URLs allowed, use full url to your site like https://example.nekoweb.org/images/coolbg.png */
background-repeat: no-repeat;
color: #b08271;
font-size: 12px;
}
.postIt{
background-color:#e6e485 ;
color: blue;
}
.background{
background-image: url('wizard.gif');
text-shadow: -3px 0 1px cyan, 3px 0 1px red;
}
.centerFlex{
display: flex;
align-items: center;
justify-content: center;
}
.blackBorder{
border: 2px solid black;
}