-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (105 loc) · 1.98 KB
/
style.css
File metadata and controls
105 lines (105 loc) · 1.98 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
body {
background-color: darkviolet;
background-image: url('wallpaper-light.jpg');
background-size: cover;
}
@media (prefers-color-scheme: dark) {
body {
background-color: dimgray;
background-image: url('wallpaper-dark.jpg');
}
}
body table tr td {
font-family: Arial, helvetica;
margin: 0;
padding: 0;
}
td {
margin: 0; padding: 0;
}
a {
text-decoration: none;
}
/* Search Bar */
.searchBar {
width: 100%;
align-items: center;
margin-bottom: 20px;
visibility: none;
}
::placeholder {
color: dimgray;
opacity: 1;
}
::-webkit-input-placeholder {
color:dimgray;
}
:-ms-input-placeholder {
color: dimgray;
}
::-ms-input-placeholder {
color: dimgray;
}
#searchQueryInput {
width: 22em;
height: 2.8rem;
background: rgba(223, 223, 223, 0.7);
outline: none;
border: none;
border-radius: 0.85rem;
padding: 0 3.5rem 0 1.5rem;
font-size: 1rem;
border: 1px solid rgb(49, 49, 49);
}
#searchQuerySubmit {
width: 3.5rem;
height: 2.8rem;
margin-left: -3.5rem;
background: none;
border: none;
outline: none;
}
#searchQuerySubmit:hover {
cursor: pointer;
}
/* Icon Grid */
#container {
border-radius: 25px;
margin: 0 auto;
width: 80%;
padding: 24px;
display: inline-block; text-align: center;
min-height: 300px;
background-color: rgba(155, 155, 155, 0.7);
}
span.item {
vertical-align: top;
display: inline-block;
text-align: center;
width: 128px;
margin: 16px 5px 16px 5px;
}
.icon {
width: 48px;
height: 48px;
padding: 18px;
border-radius: 12px;
background-color: lightgray;
}
.icon:hover {
off-background-color: lightblue !important;
off-background-blend-mode: lighten;
filter: brightness(140%);
}
.caption {
margin-top: 5px;
display: block;
color: white;
text-shadow: 1px 1px 2px black;
}
.footer {
margin-top: 20px;
color: white;
text-shadow: 1px 1px 2px black;
font-size:12px;
}