File: application.css

package info (click to toggle)
ruby-view-component 2.74.1-1
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm
  • size: 3,156 kB
  • sloc: ruby: 6,731; sh: 163; javascript: 10; makefile: 4
file content (48 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
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
html {
  font-family: sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

p {
  color: blue;
  font-weight: light;
}

.preview-component {
  background: lightgray;
  font-family: sans-serif;
  padding: 10px;
}

.btn {
  background: black;
  color: white;
  font-family: sans-serif;
}

.State {
  display: inline-block;
  padding: 4px 8px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #6a737d;
  border-radius: 3px;
}

.State--green {
  background-color: #2cbe4e;
}

.State--red {
  background-color: #cb2431;
}

.State--purple {
  background-color: #6f42c1;
}