We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 648b3a2 commit 8828885Copy full SHA for 8828885
2 files changed
client/styles/components/_banner.scss
@@ -0,0 +1,30 @@
1
+.banner {
2
+ width: 100%;
3
+ min-height: 2.2rem;
4
+ text-align: center;
5
+ padding: 1rem;
6
+ background-color: #DFED33; // yellow from p5.js website
7
+ border-bottom: 1px solid #000;
8
+
9
+ a {
10
+ color: #000;
11
+ }
12
13
+ a:hover {
14
+ text-decoration: underline;
15
16
17
+ @media (max-width: 770px) {
18
+ min-height: 3.3rem;
19
20
+}
21
22
+.banner-close-button {
23
+ display: flex;
24
+ flex-direction: column;
25
+ align-items: center;
26
+ justify-content: center;
27
+ height: 20px;
28
+ width:20px;
29
+ float: right;
30
client/styles/main.scss
@@ -55,6 +55,7 @@
55
@import 'components/skip-link';
56
@import 'components/stars';
57
@import 'components/admonition';
58
+@import 'components/banner';
59
60
@import 'layout/dashboard';
61
@import 'layout/ide';
0 commit comments