-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyoutube.css
More file actions
113 lines (95 loc) · 1.68 KB
/
youtube.css
File metadata and controls
113 lines (95 loc) · 1.68 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
body {
font-family: "Dotum";
font-size: 16px;
line-height: 1.6em;
color: #666;
background-color: #e1e1e1;
}
a {
color: #666;
}
#container {
width: 740px;
background: #fff;
margin: auto;
}
header {
padding: 30px 20px;
background: #f4f4f4;
}
header h1 {
color: black;
margin-bottom: 5px;
}
header span {
color: #dd2826;
}
section {
padding: 30px 20px 20px 20px;
}
#search-form {
display: block;
margin-bottom: 15px;
}
#search-form .fieldcontainer {
display: block;
position: relative;
margin: 0 auto;
}
#search-form .search-field {
display: inline-block;
width: 400px;
padding: 11px 7px;
color: #1F618D;
font-size: 1.6em;
border: 1px solid #c8c8c8;
border-radius: 1px;
background: #fff;
vertical-align: middle;
box-shadow: 0 0 0 6px #f0f0f0;
box-sizing: border-box;
}
#search-form .search-btn {
margin-left: 10px;
padding: 7px 10px;
height: 60px;
font-size: 1.6em;
border: none;
vertical-align: middle;
cursor: pointer;
background: skyblue;
}
/* Result items */
#results {}
#results li.item {
clear: both;
padding: 14px 0;
border-bottom: 1px dotted #ccc;
list-style: none;
overflow: auto;
}
#results li.item a {
display: block;
text-decoration: none;
}
#results li.item img {
float: left;
margin-right: 10px;
padding: 3px;
width: 100px;
border: 1px solid #ccc;
}
#results li.item h3 {
margin: 0;
}
#results li.item p {
margin: 0;
}
#results li.item .description {
padding-top: 4px;
font-size: 0.9em;
line-height: 1.5;
}
#results li.item .channel-title {
color: #dd2826;
}