-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (68 loc) · 1.2 KB
/
Copy pathstyles.css
File metadata and controls
85 lines (68 loc) · 1.2 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
/* YOUR STYLES HERE */
body {
font-family: Arial, Helvetica, sans-serif;
}
#menu {
padding: 5px 10px;
display: flex;
align-items: centre;
}
.menu-item {
font-size: 14px;
color:black;
margin: 0px 10px;
text-decoration: none;
}
.menu-item:hover {
text-decoration: underline;
}
#profile-pic {
height: 32px;
width: 32px;
border-radius: 16px;
}
#profile-pic:hover {
box-shadow: 0px 0px 5px #C2C2C2;
}
#store-link {
margin-right: auto;
}
#search {
margin-top: 120px;
text-align: center;
}
#main-logo {
width: 272px;
}
#search-bar {
height: 34px;
font-size: 17px;
border-radius: 17px;
border: 1px solid #C2C2C2;
width: 90%;
max-width: 500px;
padding-left: 20px;
padding-right: 20px;
margin-top: 30px;
}
#search-bar:hover,
#search-bar:focus {
box-shadow: 0px 0px 5px #C2C2C2;
}
#search-button {
display: flex;
justify-content: center;
margin-top: 20px;
}
.search-button {
margin: 8px;
padding: 8px 15px;
cursor: pointer;
background-color: #f8f9fa;
border: 1px solid #4b4b4b;
border-radius: 4px;
font-size: 14px;
}
.search-button:hover {
box-shadow: 0px 0px 5px #C2C2C2;
}