forked from msimbo/code-challenge-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (106 loc) · 1.92 KB
/
styles.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
#nav {
display: flex;
justify-content: space-between;
}
.nav-position {
display: flex;
justify-content: space-evenly;
color: #4B4B4B;
font-family: sans-serif;
font-weight: 400;
font-size: 14px;
}
.nav-position > p:hover {
text-decoration: underline;
cursor: pointer;
}
#left {
width: 120px;
}
#image1 {
border-radius: 50%;
margin-top: -5px;
height: 24px;
width: 24px;
opacity: .55;
}
#right {
width: 200px;
}
#image2 {
border-radius: 50%;
margin-top: 5px;
width: 30px;
height: 30px;
}
abbr {
cursor: pointer;
text-decoration: none;
}
#main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 48.5em;
}
input[type='text'] {
grid-area: search;
height: 2.4rem;
width: 30rem;
align-self: center;
justify-self: center;
border: 1px solid #DFE1E6;
border-radius: 30px;
margin-top: 1.5em;
}
input[type='submit'] {
flex-direction: row;
border: 1px solid #F8F9FA;
border-radius: 4px;
margin: 20px 3px ;
padding: 0 16px;
margin-top: 2em;
margin-bottom: 20em;
line-height: 27px;
height: 36px;
min-width: 54px;
background-color: #F8F9FA;
text-align: center;
color: #3c4043;
font-family: sans-serif;
font-size: 14px;
}
input:hover {
cursor: pointer;
}
#footer {
border-top: 1px solid #dadce0;
display: flex;
justify-content: space-between;
background-color: #F2F2F2;
right: 0;
bottom: 0;
left: 0;
position: absolute;
line-height: 1em;
font-family: sans-serif;
font-size: 14px;
color: #4B4B4B;
}
.foot-position {
display: flex;
justify-content: space-evenly;
font-family: sans-serif;
font-size: 14px;
}
#fbarleft {
width: 375px;
}
#fbarright {
width: 250px;
}
.foot-position > p:hover {
cursor: pointer;
text-decoration: underline;
}