-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (116 loc) · 2.16 KB
/
style.css
File metadata and controls
116 lines (116 loc) · 2.16 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
*{
box-sizing: border-box;
font-size: 16px;
font-family: sans-serif;
color: black;
margin: 0;
}
section{
width: auto;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
.container{
width: auto;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
.flex-link-container {
display: flex;
flex-direction: row;
gap: 0rem;
align-items: center;
justify-items: center;
}
input.search-bar {
border: none;
box-shadow: 0px 0px 10px 0px #d9d9d9;
width: 600px;
height: 2.8rem;
border-radius: 60px;
padding: 0rem 3rem;
}
input.search-bar:active,:focus,:target{
border: none;
outline: none;
}
.input-icons{
height: 1.3rem;
width: auto;
cursor: pointer;
}
.more-icon {
position: absolute;
background: #eee;
border-radius: 50%;
top: 0;
right: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
.more-icon {
display: none;
}
a {
color: #585857;
text-decoration: none;
font-size: 14px;
}
.search-input {
display: flex;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
position: relative;
}
img.search-icon {
position: absolute;
left: 1rem;
}
img.voice-icon {
position: absolute;
right: 1rem;
}
.favimg-container {
background: rgb(0 0 0 / 6%);
padding: 0.5rem;
width: 3rem;
height: 3rem;
border-radius: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
}
.link-container {
gap: 0rem;
display: flex;
flex-direction: column;
}
.logo{
margin-top: 150px;
}
.favicons {
display: flex;
flex-direction: column;
justify-items: center;
align-items: center;
gap: 1.3rem;
padding: 0.7rem 0rem;
border-radius: 0.3rem;
width: 7rem;
position: relative;
}
.favicons:hover {
background: rgb(0 0 0 / 5%);
}