-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
108 lines (107 loc) · 1.82 KB
/
css.css
File metadata and controls
108 lines (107 loc) · 1.82 KB
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
@charset "UTF-8";
/* CSS Document */
body{
background-color: #2E333A;
padding: 20px;
}
#container__main{
max-width: 900px;
margin: 0 auto;
}
#section__about{
margin-bottom: 70px;
}
#section__install{
margin: 70px 0;
}
h1, h2{
color: #FFF;
font-family: 'Montserrat', sans-serif;
margin-bottom: 20px;
}
a{
text-decoration: none;
}
p{
color: #FFF;
font-family: 'Cardo', serif;
font-size: 1em;
margin-bottom: 20px;
line-height: 30px;
letter-spacing: 1px;
}
.step-heading{
color: #FFF;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 12px;
}
i.icon{
font-size: 40px;
color: #1EA6FD;
text-align: center;
}
#btn-group{
margin: 50px 0;
}
.btn{
background-color: #1EA6FD;
color: #FFF;
padding: 20px 30px;
border-radius: 5px;
font-family: sans-serif;
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
font-weight: bold;
text-align: center;
}
.btn:hover, .btn:active, .btn:focus{
background-color: #3bb1fc;
}
.link{
color: #1EA6FD;
font-family: sans-serif;
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
font-weight: bold;
display: inline-block;
margin-left: 20px;
}
.link:hover,
.link:active,
.link:focus{
color: #3bb1fc;
}
@media(max-width: 450px){
.btn{
margin: 0 auto;
text-align: center;
display: block;
}
.link{
display: block;
margin-top: 30px;
text-align: center;
}
a.link.dwm{margin-bottom: 50px !important;}
}
a.link.dwm{
margin-bottom: 18px;
display: inline-block;
vertical-align: middle;
}
.code--block{
background-color: #FFF;
border-radius: 5px;
padding: 20px;
font-family: monospace;
margin-bottom: 50px;
}
.blue{color: blue; display: inline;}
.green{color: green; display: inline;}
.purple{color: purple; display: inline;}
.orange{color: orange; display: inline;}
.red{color: red; display: inline;}
.black{color: black; display: inline;}