-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
136 lines (114 loc) · 2.17 KB
/
style.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#header {
text-align: center;
margin-bottom: 50px;
}
#header h1 {
color: #51A2DA;
font-size: 40px;
}
#header p {
font-size: 30px;
color: #555;
}
.navbar {
/* Borrowed from masthead class on */
/* https://accounts.fedoraproject.org */
border-bottom: 1px solid #ccc;
box-shadow: 0 0 10px 2px #ddd;
background-image: linear-gradient(to bottom, #eee 0%, #ddd 100%);
background-repeat: repeat-x;
margin-bottom: 20px;
}
.navbar-brand {
padding: 0px !important;
width: 400px;
}
.navbar-brand img {
width: 40px;
margin-top: 5px;
float: left;
margin-right: 10px;
}
a.navbar-brand span {
font-size: 22px;
margin-top: 13px;
display: block;
}
.navbar-right a {
font-size: 15px;
}
.navbar li.launch {
margin-right: 10px;
}
.navbar li.launch a {
color: #51A2DA;
font-size: 18px;
font-weight: 600;
border-bottom-style: solid;
border-bottom-color: #51A2DA;
border-bottom-width: 1px;
}
.navbar li.launch a::before{
content:"";
background-image: url("img/font-awesome/hat-wizard-solid.svg");
width: 30px;
height: 30px;
margin-top: -5px;
margin-right: 10px;
display:inline-block;
float:left;
/* We can't simply set color of a svg image, it needs to be done */
/* via filter. This color is #51A2DA. Use */
/* https://codepen.io/sosuke/pen/Pjoqqp to convert hex color to filter */
filter: invert(64%) sepia(22%) saturate(1280%) hue-rotate(169deg) brightness(89%) contrast(91%);
}
.info {
margin-top: 70px;
width: 350px;
}
.info li {
font-size: 20px;
color: #555;
margin-bottom: 10px;
}
.info a {
color: #51A2DA;
}
.info ul {
list-style: none;
}
#screenshot img {
border: 1px solid #eee;
}
.info ul li::before {
content: "\2022";
color: #51A2DA;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
footer {
text-align: center;
color: #555;
font-size: 16px;
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
}
.wizard-instructions {
margin-top: 30px;
margin-bottom: 30px;
padding-left: 20px;
padding-right: 20px;
}
.wizard-pf-sidebar .list-group-item>a {
width: 18em;
}
.wizard-pf {
width: 1200px;
min-width: 700px;
max-width: 60%;
height: 95%;
}