aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/tutorials/onboarding/styles.css
blob: 870da20acde147445c958088e474d5f7dc70ea65 (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
.onboarding-step {
  position: relative;
  padding-left: 34px;
}

.onboarding-step .boxed-group-actions {
  height: 24px;
  line-height: 24px;
}

.onboarding-step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 24px;
  background-color: #cdcdcd;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.onboarding-step-open .onboarding-step-number {
  background-color: #236a97;
}

.onboarding-command {
  position: relative;
  margin: 8px 0;
}

.onboarding-command pre {
  padding: 15px;
  border-radius: 2px;
  background: #404040;
  color: #f0f0f0;
  overflow: auto;
}

.onboarding-command button {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 20px;
  line-height: 18px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
}

.onboarding-command button:hover,
.onboarding-command button:focus,
.onboarding-command button:active {
  background-color: #fff;
  color: #404040;
}