-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
115 lines (111 loc) · 1.82 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
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
/* *{
} */
body{
max-width: 1000px;
margin:auto;
}
.search_box{
font-family: 'Lato', sans-serif;
border-style: solid;
border-width: 0.5px;
border-color: lightgrey;
padding-left: 50px;
padding-right: 50px;
border-radius: 7px;
}
.search_bar{
margin-bottom: 20px;
height: 40px;
}
.addArtistButton {
float: right;
padding-right: 10px;
}
.addArtistButton > * {
height:34px;
}
.search_bar input{
width:80%;
height: 30px;
}
ul{
list-style-type: none;
}
.artistList{
display: none;
}
.artistList ul{
padding-left: 0px;
margin: auto;
width: 70%;
}
.artistList li{
padding-top: 20px;
padding-left: 10px;
height: 100px;
display: block;
border-style: solid;
border-color: lightgrey;
border-width: 0.5px;
position:relative;
}
.artistList input{
margin: auto;
position: absolute;
top: 0;
bottom: 0;
right: 5%;
height: 30px;
width: 60px;
border-radius: 5px;
border-style: solid;
border-width: 0.5px;
border-color: brown;
background-color: brown;
color: white;
}
.artistList li:hover{
background-color: antiquewhite;
}
.artistDes{
margin: 0 80px;
}
.artistDes > *{
text-overflow: ellipsis;
overflow:hidden;
white-space: nowrap;
}
.artistName{
margin: 10px 0;
font: 1.2em "Fira Sans", sans-serif;
}
img{
border-radius: 10%;
float: left;
}
.btn_add_artist{
position: inline-block;
}
li input{
text-align: center;
height:40px;
display:block;
border-radius: 5px;
border-style: solid;
border-width: 1px;
border-color: lightgrey;
margin: auto;
width:30%;
}
.inputArtist{
display: none;
}
.inputArtist ul{
margin:auto;
padding-left: 0px;
}
.inputArtist button{
display: block;
margin: auto;
padding: 10px;
}