-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (87 loc) · 1.71 KB
/
style.css
File metadata and controls
100 lines (87 loc) · 1.71 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
body{
margin: 0;
padding:0;
background-color: whitesmoke;
}
.searchbar{
width: 100%;
max-width: 700px;
align-items: center;
display: flex;
border-radius: 50px;
top:40%;
left: 43%;
position: absolute;
}
.searchbar input{
background-color: transparent;
flex: 0;
border: 1px ;
outline: none;
}
.picture{
position: absolute;
top: 29%;
left: 43%;
}
.searchbox{
position: absolute;
transform: translate(-50%,-50%);
background: #708c97;
height: 40px;
border-radius: 40px;
}
.container-input {
position: relative;
}
.input {
width: 225px;
padding: 10px 0px 10px 40px;
border-radius: 9999px;
border: solid 1px #333;
transition: all .2s ease-in-out;
outline: none;
opacity: 0.2;
}
.container-input svg {
position: absolute;
top: 50%;
left: 10px;
transform: translate(0, -50%);
}
.input:focus {
opacity: 1;
width: 300px;
}
nav {
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
position: absolute;
display: flex;
justify-content: flex-end;
right : 0%;
align-items: right;
word-spacing: 2px;
font-size: 13px;
line-height: 24px;
color: rgb(0,0,0,0.87);
font-weight: 400;
padding: 5px 6.7px;
cursor:pointer;
}
nav a:hover{
text-decoration: underline;
opacity: .85;
}
.s-btn{
border:1px solid transparent;
padding: 9px 15px;
color: #666;
font-size: 14px;
border-radius: 4px;
display: inline-block;
outline: none;
cursor: pointer;
}
.s-btn:hover{
border: 1px solid #aaa;
}