forked from thunderzx0/thunderzx0.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (105 loc) · 1.99 KB
/
styles.css
File metadata and controls
105 lines (105 loc) · 1.99 KB
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
/* Text styling */
body {
background-color: powderblue;
font-family: "Arial";
color: black;
text-align: center;
}
#musicParagraph {
text-align: left;
padding: 0px;
margin: 0px;
}
#musicList {
line-height: 1;
}
#technologyParagraph {
text-align: right;
}
/* Image styling */
img {
border-radius: 10px;
border-style: solid;
border-color: black;
}
#catPicture {
border-radius: 999999px;
border-color: black;
width: 25%;
height: 25%;
border-style: solid;
}
#catPicture:hover {
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: 1;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
#bandlabEmbed {
float: right;
width: 50%;
border-radius: 10px;
border-style: solid;
border-width: 2px;
}
#minecraftLogo {
width: 25%;
max-width: 150px;
float: left;
margin-right: 10px; /*Use this instead of padding if you want to space images with a border!*/
}
#htmlLogo {
float:left;
width:25%;
max-width: 150px;
}
/* Divider bar styling */
.topDivider {
border-top-style: solid;
border-top-width: 2px;
border-top-color: #000000;
padding-bottom: 10px;
}
/* Navigation bar styling */
nav ul {
background-color: white;
text-align: left;
border-style: solid;
border-color: silver;
border-radius: 10px;
padding: 10px;
}
nav ul li {
list-style-type: none;
display: inline;
color: grey;
margin-right: 10px;
margin-left: 10px;
}
nav ul li a {
text-decoration: none;
color: black;
}
/* Background gradients */
#frontPage {
background: linear-gradient(to bottom right, powderblue, rgb(68, 144, 174));
background-repeat: no-repeat;
background-attachment: fixed
}
#aboutMePage {
background: linear-gradient(to bottom right, rgb(248, 72, 72), #ff8d8d);
background-repeat: no-repeat;
background-attachment: fixed
}
#creditsPage {
background: linear-gradient(to bottom right, rgb(120, 225, 113), rgb(38, 128, 78));
background-repeat: no-repeat;
background-attachment: fixed
}