File: first-run.css

package info (click to toggle)
lightbeam 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,344 kB
  • sloc: makefile: 18; sh: 6
file content (92 lines) | stat: -rw-r--r-- 1,730 bytes parent folder | download | duplicates (2)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
body {
  background: #5d667a;
  color:#333;
  font-family: "Open Sans", sans-serif;
  margin:0; /* unset browser styles */
  padding-bottom:16px;
}

h1 {
  color: white;
  font-weight: normal;
}

.center { text-align: center; }
img.center, button.center, a.center { display: block; margin: 0 auto; }

img#lightbeam-logo { margin-bottom:-18px; }

body > ol, body > ul, body > #start { width: 578px; margin: 0 auto; }

ol#steps {
  /* unset default styles */
  list-style-type:none;
  padding:0px;
  /* counter for custom numbers */
  counter-reset: steps-counter;
}
ol#steps > li {
  background:white;
  padding:20px;
  border-radius: 0.5em;
  margin-bottom:24px;
  position:relative;
}
ol#steps > li:before {
  content: counter(steps-counter);
  counter-increment: steps-counter;
  font-size:31px;
  font-weight:bold;
  position: absolute;
  top: 8px;
  left: -68px;
  background:white;
  width:48px;
  height:48px;
  border-radius:24px;
  text-align:center;
}
ol#steps p {
  margin:0; /* unset default styles */
  margin-bottom: 16px;
}
ol#steps > li p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left:16px
}

ul li {
  padding-bottom: 10px;
}

ul li:last-child {
  padding-bottom: 0;
}

div#start {
  background: white;
  border-radius: 0.5em;
  transition: all 0.3s;
}
#start a {
  text-decoration: none;
  padding: 10px;
  color: #5D667A;
  font-weight: bold;
  outline: none;
  transition: all 0.3s;
}

#start:hover {
  box-shadow: 5px 5px 5px #111111;
  background: #4BC599;
}
#start a:hover {
  color: white;
}