-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
96 lines (72 loc) · 1.14 KB
/
index.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
/*Resetting the browser*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
li {
list-style: none;
}
body {
font-family: Arial;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
background-color: #000000;
}
/*search box section*/
.heading {
margin: 10px 0;
text-align: center;
text-transform: uppercase;
color: #87ceeb;
}
.search-section {
background-color: #87ceeb;
padding: 10px;
border-radius: 26px;
}
#search {
width: 100%;
padding: 12px 20px;
border: none;
border-radius: 26px;
}
.user-list-section {
margin-top: 20px;
}
li {
border: 1px solid #dddddd;
margin-top: -1px;
background-color: #f6f6f6;
font-size: 18px;
text-transform: capitalize;
padding: 12px;
border-radius: 5px;
}
li:hover {
background-color: #eeeeee;
}
/*pill button for username*/
.username {
background-color:#87ceeb;
color: #ffffff;
padding: 6px;
font-size: 14px;
border-radius: 5px;
position: absolute;
right: 325px;
}
/*media query for large screens*/
@media (min-width: 1000px) {
body {
width: 50%;
}
li {
font-size: 14px;
}
}
/*media query for large screens*/
@media (min-width: 1000px) {
}