generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome2.css
58 lines (42 loc) · 786 Bytes
/
home2.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
* {
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
header {
background-color: yellow;
}
h1 {
background:linear-gradient(blue, lightblue);
color: white;
text-align: center;
}
.toplist {
display: inline; /* Make the list items inline */
margin-right: 10px; /* Add space between items */
}
html {
height: 100%;
}
a {
text-decoration: none;
color: black;
}
.toplink {
background-color: black;
color: white;
}
body {
/* background-color: blue */
background: linear-gradient(lightblue, white);
height: 100%;
z-index: 10;
}
.home {
width: 100%;
height: 100%;
padding: 15px;
background: linear-gradient(lighblue, white);
}
canvas {
z-index: 0; /* Places canvas behind other elements */
}