-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.css
126 lines (103 loc) · 1.97 KB
/
demo.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
margin-top: 50px;
}
header, .signup-prompt, .signup-prompt-bg {
display: none;
}
.demo-frame {
position: fixed;
top: 48px;
right: 0;
left: 0;
bottom: 0;
border: 4px solid #ff00ff;
pointer-events: none;
z-index: 110;
}
.demo-frame .warn {
position: absolute;
width: 100%;
top: -23px;
text-align: center;
}
.demo-frame .warn span {
background-color: #ff00ff;
color: #fff;
text-align: center;
padding: 3px 9px;
border-radius: 4px;
font-size: 12px;
}
.octolinker-header {
position: fixed;
width: 100%;
background: white;
top: 0;
z-index: 100;
height: 50px;
}
.reponav-wrapper .reponav-item {
padding-top: 10px;
}
.octolinker-header .inner {
display: grid;
grid-template-columns: auto auto;
margin: 5px 20px;
}
.octolinker-header .logo {
color: #222;
background: url(/static/octolinker.png) no-repeat;
background-size: 40px;
padding-left: 52px;
}
.octolinker-header .cta {
display: flex;
justify-content: flex-end;
}
.octolinker-header .browser-logos {
padding-left: 7px;
}
.octolinker-header .browser-logos img {
margin-left: 2px;
}
.octolinker-header a {
color: #ff00ff;
}
@media only screen and (max-width: 768px) {
.octolinker-header .inner {
line-height: 50px;
}
.octolinker-header p,
.octolinker-header h2 {
display: none;
}
}
@media only screen and (min-width: 768px) {
body {
margin-top: 60px;
}
.demo-frame {
top: 60px;
}
.octolinker-header {
height: 60px;
}
.octolinker-header .inner {
margin: 14px 20px;
}
}
@media only screen and (min-width: 1012px) {
.octolinker-header .cta {
padding-top: 11px;
}
.octolinker-header .browser-logos img {
margin-left: 0;
}
}
.demo-page .pl-c {
background: yellow;
padding: 3px 2px;
}
.js-cookie-consent-banner {
display: none;
}