-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
122 lines (116 loc) · 2.31 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
html, body {
margin: 0;
padding: 0;
font-family: 'Roboto';
scroll-behavior: smooth;
color: white;
background-color: #202124;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li.right {
float: right;
}
li a, li i, li img {
display: block;
color: whitesmoke;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li img {
padding: 10px !important;
scale: 0.7;
}
div.input {
width: 76.08vh;
height: 50px;
border-radius: 30px;
transition: background-color 0.25s ease;
border: 1px solid gray;
}
div.input:hover {
background-color: rgb(80, 80, 80);
}
div.input:focus {
background-color: rgb(80, 80, 80);
}
div.input input {
outline: none;
border: none;
}
div.input input::placeholder {
transition: color 0.25s ease;
}
div.input:hover input::placeholder, div.input input:focus::placeholder {
color: white !important;
}
input {
border: none;
width: calc(100% - 36px);
height: 100%;
background: none;
}
button.noogle {
background-color: #303134;
border: 1px solid #303134;
border-radius: 4px;
color: #e8eaed;
font-family: Roboto,arial,sans-serif;
font-size: 14px;
margin: 11px 4px;
padding: 0 16px;
line-height: 27px;
height: 36px;
min-width: 54px;
text-align: center;
cursor: pointer;
user-select: none;
}
button.noogle:hover, button.noogle:focus {
box-shadow: 0 1px 3px rgb(23 23 23 / 24%);
background-color: #303134;
border: 1px solid #5f6368;
color: #e8eaed;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
justify-items: center;
gap: 10px;
padding: 10px;
width: 70vw;
margin: 0 15vw;
}
.grid-item {
display: flex;
flex-direction: column;
align-items: center;
max-width: 150px;
padding: 10px;
margin: 5px;
border-radius: 7px;
cursor: pointer;
border: 2px solid white;
}
.grid-item div.image-container {
width: 150px;
height: 150px;
}
.grid-item div.image-container img {
max-width: 150px;
max-height: 150px;
border-radius: 15px;
}
.grid-item b {
text-align: center;
margin: 0;
}