-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
85 lines (75 loc) · 1.19 KB
/
main.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
body {
background-color: #212020;
margin: 0;
font-family: Tahoma, Sans-Serif;
width: 100%;
height: 100%;
}
/* Navigation Styles */
.navbar {
width: auto;
border: 1px solid #ffffff;
background: #ffffff;
padding: 20px;
}
.navbar li {
list-style-type: none;
display: inline;
margin-right: 10px;
}
.navbar li a {
text-decoration: none;
color: #212022;
}
.navbar li a:hover {
color: #494849;
font-size: 18px;
}
/* Flexbox content styles */
.flexbox {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
align-content: center;
margin: 10px;
}
.flex {
background: #ffffff;
padding: 1.5em;
margin-bottom: 10px;
}
/* Search and Logo */
.flex-search {
color: #a8f988;
margin: auto;
position: relative;
margin: 320px;
text-align: center;
font-size: 20px;
}
.search-box {
border: 1px solid #e6e5e6;
/* border-radius: 100px; */
background: #ffffff;
width: 570px;
height: 50px;
line-height: 48px;
}
.search-btn {
background: #a8f988;
border: 1px solid #a8f988;
padding: 10px;
font-size: 20px;
opacity: .8;
}
.search-btn:active {
opacity: 1;
}
.search {
font-size: 20px;
width: 475px;
height: 40px;
background: transparent;
border: none;
}