-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
138 lines (116 loc) · 2.73 KB
/
custom.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
html {
scrollbar-color: #040a0f #202b38;
scrollbar-width: thin;
}
body {
max-width: 800px;
line-height: 1.4;
margin: 20px auto;
padding: 0 10px;
word-wrap: break-word;
/* background: #202b38;*/
background: #202b38 url(./img/bg2.jpeg) fixed center no-repeat;
background-blend-mode: overlay;
background-size: cover;
text-rendering: optimizeLegibility;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
/* color: #dbdbdb;*/
color: #fff;
}
.heading {
text-align: center;
font-weight: 600;
margin-bottom: 12px;
margin-top: 24px;
font-size: 2.2em;
color: white;
}
button {
background-color: #276392;
}
.summary {
text-align: center;
font-weight: 500px;
font-size: large;
margin-bottom: 50px;
}
a {
color: #41adff;
text-decoration: none;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 2rem;
}
.card {
border: 2px solid #e7e7e7;
border-radius: 4px;
padding: .5rem;
text-align: center;
}
.dialog {
text-align: left;
width: 500px;
height: 400px;
line-height: 3;
}
.close-button {
text-align: center
}
.dialog img {
background-color: white;
}
img {
max-width: 100%;
height: auto;
}
img:hover {
animation-name: jiggle;
animation-duration: 1s;
}
@keyframes jiggle {
0% {
margin-left: 0px;
}
25% {
margin-left: 5px;
}
50% {
margin-left: 0px;
}
75% {
margin-right: 5px;
}
100% {
margin-right: 0px;
}
}
.filter {
display: flex;
/* justify-content: center; */
align-items: center;
}
label {
margin-bottom: 4px;
}
select {
color: white;
font-family: inherit;
font-size: inherit;
cursor: pointer;
background: #161f27 url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='62.5' width='116.9' fill='%23efefef'%3E %3Cpath d='M115.3,1.6 C113.7,0 111.1,0 109.5,1.6 L58.5,52.7 L7.4,1.6 C5.8,0 3.2,0 1.6,1.6 C0,3.2 0,5.8 1.6,7.4 L55.5,61.3 C56.3,62.1 57.3,62.5 58.4,62.5 C59.4,62.5 60.5,62.1 61.3,61.3 L115.2,7.4 C116.9,5.8 116.9,3.2 115.3,1.6Z'/%3E %3C/svg%3E") calc(100% - 12px) 50% / 12px no-repeat;
-webkit-appearance: none;
margin-right: 6px;
margin-bottom: 6px;
padding: 10px;
padding-right: 30px;
border: none;
border-radius: 6px;
outline: none;
display: block;
}
/*
input {
width: 300px;
} */