-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
120 lines (100 loc) · 1.87 KB
/
css.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@font-face {
font-family: 'Fira Code';
src: url('FiraCode-Regular.woff') format('woff');
}
:root {
--dark-col: #313131;
--darker-col: #000000;
--text-col: #ffffff;
}
html {
background-color: #000000;
}
img.bg {
/* Set rules to fill background */
min-height: 100%;
min-width: 1024px;
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
z-index: -10;
opacity: 0.3;
}
@media screen and (max-width: 1024px) { /* Specific to this particular image */
img.bg {
left: 50%;
margin-left: -512px; /* 50% */
}
}
body {
color: var(--text-col);
font-family: 'Fira Code';
}
.navbar {
list-style-type: none;
margin: 10px;
padding: 0;
overflow: hidden;
}
.navbar > li {
display: inline;
font-size: 20px;
}
.navbar li a {
color: var(--text-col);
text-decoration: none;
transition: all 0.2s;
display: inline-block;
}
.navbar li a:hover {
transform: translate(2px, -2px);
text-shadow: -2px 2px #1cb7a0;
}
.center-div {
text-align: center;
}
.header {
font-family: 'Fira Code', monospace;
}
.myn {
font-family: 'Fira Code';
color: #1cb7a0;
display: inline-block;
}
.myn > span {
animation: curblink 1s step-end infinite;
font-size: 20px;
}
@keyframes curblink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.about-me {
font-family: 'Fira Code';
font-size: 1.25em;
margin-left: 30vw;
margin-right: 30vw;
}
.pfp {
max-height: 200px;
border-radius: 50% 50% 50% 50%; /* TO SATISY STUPID SAFARI*/
outline: solid #1cb7a0;
outline-offset: 5px;
}
@media screen and (max-width: 768px) {
.about-me {
margin-left: 5vw;
margin-right: 5vw;
}
}