-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (93 loc) · 1.64 KB
/
style.css
File metadata and controls
115 lines (93 loc) · 1.64 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
input[type="checkbox"] {
margin: 0 5px 0 18px;
}
input {
padding: 5px;
box-sizing: border-box;
border: none;
}
label {
cursor: default;
font-size: 22px;
}
input[type=text] {
background-color: #C0C0C0;
font-weight: bolder;
color: black;
padding: 8px 5px;
margin-bottom: 13px;
}
body {
background-color: darkgrey;
text-align: center;
font-family: 'Coming Soon', cursive;
color:white;
}
.stream_list {
margin: 0 auto;
}
#main_title {
font-family: 'Codystar', cursive;
font-size: 77px;
margin-top: 0px;
margin-bottom: 5px;
}
#movie_title {
margin-bottom: 7px;
margin-top: -14px;
}
li {
list-style: none;
}
button:hover {
background: darkgrey;
color: lightgrey;
}
button {
border-style: outset;
margin-top: 4px;
padding: 10px 22px 0px 22px;
background: grey;
color: darkgrey;
font-size: 50px;
font-family: 'Coming Soon', cursive;
}
.hb_content {
float:left;
margin: 0px 25px;
}
b {
font-size: 24px;
}
span {
font-size: 18px;
font-style: italic;
}
.hb_content:nth-of-type(2) {
border: 3px solid darkgrey;
margin: 0px 14px;
border-radius: 5%;
background-color: #999999;
}
.hb_content p:first-of-type {
font-style: italic;
}
.parent_container {
display: flex;
flex-direction: row;
justify-content: space-between;
}
/*Taken from https://css-tricks.com/snippets/css/style-placeholder-text/
Used to change the color of my input box.*/
::-webkit-input-placeholder {
color:#778899;
}
:-moz-placeholder { /* Firefox 18- */
color: #778899;
}
::-moz-placeholder { /* Firefox 19+ */
color: #778899;
}
:-ms-input-placeholder {
color: #778899;
}