summaryrefslogtreecommitdiff
path: root/talermerchantdemos/survey/static/demo.css
blob: b2688ada2c81ac054f86ef443c49ad455d796f23 (plain)
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
/* style common to all demo pages */

.demobar h1 {
  text-align: center;
}
.demobar > p {
  padding: 0.5em; 
}
.demobar a,
.demobar a:visited {
  color: inherit;
}
.adorn-brackets::before {
  content: "❬";
  color: #aa3939;
}
.adorn-brackets::after {
  content: "❭";
  color: #aa3939;
}
.tt {
  font-family: 'Lucida Console', Monaco, monospace;
}

.informational-ok {
  background: lightgreen;
  border-radius: 1em;
  padding: 0.5em;
}

.informational-fail {
  background: lightpink;
  border-radius: 1em;
  padding: 0.5em;
}

.content {
  overflow-x: auto;
}
.demobar {
  overflow-x: auto;
  background-color: #033;
  color: white;
}

body {
  overflow-y: scroll;
}

@media (min-width: 500px) {
  .content {
    margin-left: 25%;
    padding-left: 2em;
    margin-right: 1em;
    overflow-x: auto;
  }
  .demobar {
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    background-color: #033;
    color: white;
    position: fixed;
    width: 25%;
    padding-right: 1em;
    overflow: auto;
  }
}