-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (102 loc) · 1.65 KB
/
Copy pathstyles.css
File metadata and controls
122 lines (102 loc) · 1.65 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
120
121
122
body {
background-color: #ffffff;
}
#page-container {
margin: auto;
max-width: 960px;
padding: 50px 0px;
}
/* TV Mockup*/
#tv-container {
display: none;
width: 960px;
margin: auto;
}
#tv-shell {
background: black;
padding: 20px;
border-radius: 15px;
}
#tv-screen {
background-color: #e3e5e7;
}
.youtube-video {
aspect-ratio: 16 / 9;
width: 100%;
}
/* Screens */
.screen {
display: none;
margin-bottom: 0;
}
#exchange-screen ol {
display: inline-block;
text-align: left;
}
#exchange-screen p {
margin-bottom: 0px;
}
#exchange-screen #qrcode img {
display: inline !important;
padding: 5px;
border-radius: 3px;
background-color: #d0d2d3;
}
/* Steps */
#step-title {
font-weight: 300;
}
#step-title,
#step-description {
text-align: center;
padding-bottom: 15px;
}
#step-indicator {
display: flex;
justify-content: center;
align-items: center;
}
#step-indicator .step-number {
border: 1px solid #d0d2d3;
border-radius: 0.8em;
display: inline-block;
line-height: 1.5em;
text-align: center;
width: 1.6em;
font-size: 1.8rem;
font-weight: 300;
}
#step-indicator .step-number.active {
border-color: #7ed321;
color: #7ed321;
}
#step-indicator .step-connector {
border-top: 1px solid #d0d2d3;
width: 6em;
height: 1px;
}
/* Request/Response */
#token-set,
#request,
#response {
margin-top: 40px;
display: none;
}
.card-docs {
padding: 50px;
}
/* TV Shows */
#shows-container {
display: flex;
justify-content: space-evenly;
}
#shows-container .show {
height: 200px;
width: auto;
border-radius: 5px;
cursor: pointer;
opacity: 0.9;
}
#shows-container .show:hover {
opacity: 1;
}