forked from Jaredk3nt/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
149 lines (135 loc) · 2.68 KB
/
styles.css
File metadata and controls
149 lines (135 loc) · 2.68 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
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
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
:root {
--bg: #5f4b8b;
--fg: #ffffff;
--secondaryFg: #b3b3b3;
--containerBg: #272727;
--searchBg: var(--containerBg);
--scrollbarColor: #3f3f3f;
}
body {
background-color: var(--bg);
margin: 0px;
}
.container {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#clock {
font-family: sans-serif;
font-size: 3.5rem;
font-weight: 600;
font-family: 'Roboto Mono';
color: var(--fg);
margin-bottom: 0.25em;
}
#search {
width: 100%;
height: 100vh;
background-color: var(--searchBg);
display: none;
position: absolute;
box-sizing: border-box;
flex-direction: column;
align-items: center;
justify-content: center;
}
#search-field {
width: 90%;
padding: 0.75em 1em;
box-sizing: border-box;
background-color: var(--searchBg);
border: solid 0px var(--searchBg);
font-family: 'Roboto Mono';
font-size: 4rem;
color: var(--fg);
outline: none;
border-radius: 3px;
margin-bottom: 1em;
text-align: center;
}
.weather-container {
width: 30%;
background-color: var(--containerBg);
padding: 1em;
border-radius: 3px;
font-family: 'Roboto Mono';
color: var(--fg);
text-align: center;
}
.inline {
display: inline-block;
}
.bookmark-container {
display: flex;
flex-direction: row;
justify-content: center;
width: 50%;
margin: 1em 0em;
}
@media only screen and (max-width: 960px) {
.container {
height: auto;
}
#clock {
margin-top: 1em;
}
.container > .bookmark-container {
flex-direction: column;
width: 60%;
}
.bookmark-container > .bookmark-set {
width: auto;
margin: 1em 0em;
}
}
.bookmark-set {
padding: 1em;
background-color: var(--containerBg);
border-radius: 3px;
font-family: 'Roboto Mono';
font-size: 0.85rem;
width: 25%;
height: 12em;
margin: 0em 0.5em;
box-sizing: border-box;
}
.bookmark-inner-container {
overflow-y: scroll;
height: 80%;
vertical-align: top;
padding-right: 6px;
box-sizing: border-box;
scrollbar-width: thin;
scrollbar-color: var(--scrollbarColor) #ffffff00;
}
.bookmark-inner-container::-webkit-scrollbar {
width: 6px;
}
.bookmark-inner-container::-webkit-scrollbar-track {
background: #ffffff00;
}
.bookmark-inner-container::-webkit-scrollbar-thumb {
background-color: var(--scrollbarColor);
border-radius: 6px;
border: 3px solid #ffffff00;
}
.bookmark-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--fg);
margin: 0em 0em 0.35em 0em;
}
.bookmark {
text-decoration: none;
color: var(--secondaryFg);
display: block;
margin: 0.5em 0em;
}
.bookmark:hover {
color: var(--fg);
}