-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (106 loc) · 1.87 KB
/
style.css
File metadata and controls
119 lines (106 loc) · 1.87 KB
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
body{
font-family: cursive;
color: #444;
letter-spacing: 5px;
}
h1,h2{
font-weight: italic;
}
#wrapper{
width:90%;
max-width: 960px;
margin: 20px auto;
border-radius: 10px;
box-shadow: -20px 50px 200px aqua;
box-sizing: border-box;
padding: 0 0 70px;
overflow: hidden;
border: 1px solid lightgray;
}
#page-banner{
background:#D3D3D3;
padding:10px 0;
}
#page-banner h1, #page-banner p{
width:100%;
text-align: center;
margin: 10px 0;
}
#page-banner input{
width:90%;
max-width: 300px;
margin: 20px auto;
display: block;
padding: 8px;
border:1px solid #ddd;
border-radius:4px;
font-size:16px;
color:#444;
}
#movie-list,#add-movie,#tabbed-content{
margin: 30px;
}
#movie-list ul,#tabbed-content ul{
list-style-type: none;
padding: 0;
}
#movie-list li{
padding: 20px;
border-left: 5px solid #ddd;
margin: 20px 10px;
}
#movie-list li:hover{
border-color:#9361bf;
}
.delete{
float: right;
background: #9361bf;
padding:6px;
border-radius:4px;
cursor: pointer;
color: white;
}
.delete:hover{
background:#333;
}
#add-movie{
width: 400px;
margin:0 auto;
}
#add-movie input{
display: block;
margin: 20px 0;
padding: 10px;
border: 1px solid #ccc;
font-size: 16px;
border-radius: 4px 0 0 4px;
box-sizing: border-box;
width: 300px;
float: left;
}
#add-movie button{
border: 1px solid #9361bf;
background: #9361bf;
padding:10px 20px;
font-size: 16px;
display: inline-block;
margin: 0;
border-radius: 0 4px 0 4px;
cursor: pointer;
width: 100px;
float: left;
margin: 20px 0;
border-left: 0;
color: white;
}
#add-movie:after{
content: '';
display: block;
clear: both;
}
#add-movie #hide{
width: 30px;
}
#add-movie label{
line-height: 52px;
}