-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmyspace-base.css
50 lines (45 loc) · 995 Bytes
/
myspace-base.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
* { box-sizing: border-box; }
/* add background image by pasting its url between ('') */
body {
background-image:url('');
background-color:black;
background-repeat:no-repeat;
background-size:cover;
font-family:Verdana;
color:black;
}
/* this styles links for the whole page */
a {
text-decoration:none;
color:darkblue;
}
a:hover {
text-decoration:underline;
}
/* this is the navbar / header thingie */
.kitbar {
background-image:url('https://wavv.neocities.org/myspace/img/kitspace_logo.png');
background-repeat:no-repeat;
background-position: 20px 20px;
background-attachment: scroll;
background-size: auto 50px;
width:100%;
height:100%;
text-align:center;
color:white;
}
.kitbar a{
display: inline-block;
padding:10px;
color:white;
font-size:11px;
font-weight:normal;
margin-left:5px;
margin-right:5px;
vertical-align: baseline;
}
.kitspace a:hover {
background-color:black;
color: orange;
}
/* add other styles below */