forked from ibm-early-programs/watson-tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (80 loc) · 1.28 KB
/
style.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
html, body {
height: 100%;
background: #111;
color: #eee;
}
body {
margin: 0;
font-family: 'HelvNeueLightforIBM', Sans-Serif;
}
.tv-container {
padding: 20px;
height: 100%;
}
.tv-header {
color: white;
height: 120px;
}
.tv-header .btn {
font-size: 24px;
margin-bottom: 10px;
background: #222;
}
.tv-header .btn:hover, .tv-header .btn:focus {
color: #ccc;
background: #333;
outline: none;
}
.tv-header .tv-disabled-btn {
color: #666;
}
.tv-header .tv-container {
display: flex;
align-items: center;
}
.tv-header h1 {
display: inline-block;
margin: 15px 10px 0 0;
font-size: 60px;
font-family: 'LubalinDemiforIBM', Sans-Serif;
}
.tv-header .fa {
margin-left: 12px;
}
.tv-tv {
background: #222;
height: 580px;
}
#tv-video {
height: 500px;
width: 100%;
}
.tv-translation {
height: calc(100% - 710px);
}
#tv-translation-text {
height: 100%;
padding: 30px 100px;
overflow-y: hidden;
font-size: 60px;
line-height: 90px;
}
.tv-url {
margin-bottom: 10px;
}
.tv-url .input-group {
width: calc(100% - 57px);
float: left;
border-radius: 0;
}
.tv-url .input-group input, .tv-url .input-group-addon, .btn {
border-radius: 0;
border-color: #666;
background: none;
color: #eee;
}
.tv-url .btn {
border-left: 0;
}
.tv-input {
}