-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (64 loc) · 1.05 KB
/
styles.css
File metadata and controls
64 lines (64 loc) · 1.05 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
body{
background-color: rgb(0, 0, 0);
color: white;
font-family: "Courier New";
}
.main{
position: relative;
height: 59rem;
z-index: 0;
}
.links a{
margin-top: 0;
font-size: 20px;
color: white;
text-decoration: none;
}
.github{
color: white;
}
.modrinth{
color: #00d845;
}
.curseforge{
color: #f16436;
}
.links img{
width: 25px;
vertical-align: text-bottom;
}
.mail{
color: gray;
text-decoration: none;
}
.mail:hover{
color: white;
}
.right_arrow{
float: right;
}
.left_arrow {
float: left;
}
.right_arrow button, .left_arrow button{
background: none;
color: white;
border: none;
}
.card img{
width: 25px;
border-radius: 20%;
}
.card{
background-color: rgb(25, 25, 25);
}
.card-subtitle{
color: rgb(140, 140, 140) !important;
}
.container, .links, .right_arrow, .left_arrow, #projects_info, .about_info{
animation: fadeIn 2s;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}