-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (122 loc) · 2.37 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
:root {
--color-bg: #000000;
--color-fg: #acb1bd;
--color-link: #73ade9;
--color-link-visited: #73ade9;
--color-link-hover: #6fb3bf;
}
html,
body {
background: var(--color-bg);
color: var(--color-fg);
font-family: "FixedSys Excelsior", monospace;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.container {
display: grid;
grid-template-columns: 1fr 460px 600px 1fr;
grid-template-areas:
". left right .";
column-gap: 60px;
justify-items: left;
align-items: center;
min-height: 100%;
}
.left {
grid-area: left;
aspect-ratio: 1/1;
}
.terminal {
grid-area: right;
height: 44%;
width: 110%;
background-color: #191b1f;
padding-bottom: 30px;
padding-left: 15px;
/*border-radius: 5px;*/
font-family: 'FixedSys Excelsior', monospace;
}
.image img {
padding-top: 100px;
max-width: 75%;
max-height: 75%;
box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
padding: 0px;
}
.head {
display: flex;
flex-direction: column;
align-items: left;
padding-left: 24px;
font-size: 18px;
padding-top: 60px;
}
.head2 {
display: flex;
flex-direction: column;
align-items: left;
padding-left: 24px;
font-size: 18px;
padding-top: 15px;
}
.category {
display: flex;
flex-direction: column;
width: 180px;
}
.bookmarks {
display: flex;
justify-content: center;
}
.search-form {
width: 20rem;
outline: none;
border: none;
background-color: #191b1f;
color: #73ade9;
font-size: 18px;
padding-top: 10px;
font-family: 'FixedSys Excelsior', monospace;
}
.links {
display: flex;
flex-direction: column;
align-items: left;
padding-top: 10px;
padding-bottom: 20px;
padding-left: 20px;
}
.title {
font-size: 18px;
padding-bottom: 7.5px;
color: #adadad;
}
li {
font-size: 18px;
list-style-type: none;
padding: 5px;
}
a:link {
text-decoration: none;
color: var(--color-link);
}
a:visited {
color: var(--color-link-visited);
}
a:hover {
color: var(--color-link-hover);
}
@keyframes opacity {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}