-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
175 lines (162 loc) · 2.73 KB
/
style.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
PALETTE
1A1A1D
2A1B3D
D83F87
44318D
8DA7BE
59B654
*/
/*
ALT PALETTE
2E4057
66A182
CAFFB9
AEF78E
91F466
*/
html {
scroll-behavior: smooth;
}
body {
background-color: #1A1A1D;
color: white;
font-family: 'Roboto+Mono', monospace;
}
/* General-use */
.centeredbox { /* Flexbox where everythign is center aligned */
display: flex;
align-items: center;
justify-content: center;
}
.centeredboxfeature { /* Flexbox where everythign is center aligned */
display: flex;
align-items: center;
justify-content: center;
background-color: #25252A;
flex-direction: column;
}
.sticky {
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
padding-top: 0px;
z-index: 998;
}
.leftbox { /* Flexbox where everything is left aligned */
display: flex;
align-items: left;
justify-content: left;
}
/* Item-specific stuff */
.titletext {
font-size: xx-large;
}
.profile { /* Profile picture */
border-radius: 50%;
max-width: 25%;
height: auto;
padding: 100px;
}
.projectitem {
padding: 20px;
width: 100%;
margin: 10px;
max-width: 30%;
}
.projectitem img {
width: 100%;
height: 100%;
}
.projectitem ul {
color: #c77dff;
font-weight: bold;
font-size: large;
}
.centerednav {
display: flex;
flex-direction: row;
justify-content: center;
list-style-type: none;
margin: 0;
padding: 20px;
background-color: #1A1A1D;
}
.centerednav li a {
color: white;
font-size: x-large;
padding: 15px 20px;
text-decoration: none;
}
.centerednav li a:hover {
color: #c77dff;
}
.centerednav .active {
color: #9d4edd;
}
.centeredicons {
padding-left: 0;
padding-right: 60px;
color: white;
text-decoration: none;
}
.centeredicons a {
color: white;
text-decoration: none;
}
.centeredicons:hover {
color: #c77dff;
}
/* Styling text */
.highlight_dark { /* For bolding important stuff */
/* color: #D83F87; */
color: #9d4edd;
font-weight: bold;
}
.highlight_light { /* For bolding important stuff */
/* color: #59B654; */
color: #c77dff;
font-weight: bold;
}
.highlight_featured { /* For bolding important stuff */
/* color: #59B654; */
color: #9d4edd;
font-weight: bold;
padding-top: 15px;
}
.whitelink {
color: white;
text-decoration: none;
}
/* Animations */
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fade1s {
opacity: 0;
animation-name: fadeIn;
animation-fill-mode: forwards;
animation-duration: 2s;
animation-delay: 1s;
}
.fade2s {
opacity: 0;
animation-name: fadeIn;
animation-fill-mode: forwards;
animation-duration: 2s;
animation-delay: 2s;
}
@media (max-width: 800px) {
.centeredbox {
flex-direction: column;
}
.profile {
padding: 20px;
max-width: 75%;
}
.projectitem {
max-width: 80%;
padding: 10px;
}
}