-
Notifications
You must be signed in to change notification settings - Fork 0
/
JavaScript.css
97 lines (94 loc) · 1.46 KB
/
JavaScript.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
font-family: 'Roboto', sans-serif;
}
body{ background: #000;}
label{color: #fff;}
#main {
margin: 60px 0;
}
#header {
font-size: 30px;
color: teal;
}
h1 {
font-style: italic;
text-align: center;
font-family: 'Lobster', cursive;
}
.header {
height: 50px;
background: #222;
line-height: 50px;
}
img {
width: 70px;
padding-right: 10px;
}
.row {
margin: 10px 20px;
}
#search-btn {
margin-top: 10px;
padding: 6px 26px;
/* border: none;*/
background: teal;
color: #fff;
border: teal;
}
#results {
margin: 50px 20px 0 0;
}
.person-row {
margin: 10px 0;
padding: 10px;
background: #111;
float: left;
width: 100%;
}
.person-row img {
float: left;
}
.person-info {
float: left;
padding-top: 20px;
color: teal;
line-height: 1.2;
}
.person-row > button {
float: right;
margin-top: 35px;
padding: 3px 8px;
border: none;
}
#add-btn {
background: teal;
color: #fff;
border: teal;
}
.noMatch {
width: 250px;
margin: 0 auto;
}
#noMatchFound {
margin-top: 80px;
text-align: center;
font-size: 20px;
}
#ig{
width: 15px;
padding-right: 0;
}
footer{
width: 100%;
height: 130px;
background: #111;
margin-top: 140px;
}
.copyright {
color: #fff;
text-align: center;
line-height: 130px;
font-size: 15px;
}