forked from nikhilmufc7/Your-First-PR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
153 lines (131 loc) · 2.41 KB
/
main.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* Base rules */
:root * {
font-family: 'Dosis', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
h2 {
font-size: 2.125em;
}
li {
list-style: none;
}
p {
margin: .5em 0 1em;
}
/* Utility classes */
.u-text-center {
text-align: center;
}
.u-text-white {
color: white;
}
.u-bg-brand {
background-color: #489df2;
background: #3241a6;
background: -webkit-radial-gradient(center, ellipse cover, #3241a6 0,#202a6b 120%);
background: radial-gradient(ellipse at center, #3241a6 0,#202a6b 120%);
}
/* Section */
.section {
display: -webkit-flex;
display: -ms-flex;
display: flex;
align-items: center;
min-height: 100vh;
padding-left: 1em;
padding-right: 1em;
}
.section-content {
width: 100%;
}
/* Jumbotron */
.jumbotron-fluid h1 {
margin-bottom: 0;
font-family: 'Aladin', cursive;
font-size: 14vmin;
}
.lead {
font-size: 8vmin;
}
/* Link */
.link-default,
.list-grid a {
text-decoration: none;
color: #337ab7;
}
.link-default:hover,
.link-default:focus,
.list-grid a:hover,
.list-grid a:focus {
text-decoration: underline;
color: #23527c;
}
/* Button */
.btn {
display: inline-block;
vertical-align: middle;
margin-bottom: 0;
padding: .4375em .875em;
border: 1px solid transparent;
border-radius: .25em;
line-height: 1.5;
text-align: center;
text-decoration: none;
white-space: nowrap;
background-image: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn-primary {
color: white;
background-color: rgba(255, 255, 255, .2);
}
.btn-primary:hover,
.btn-primary:focus {
background-color: rgba(255, 255, 255, .4);
}
.btn-lg {
font-size: 6vmin;
}
/* List grid */
.list-grid {
margin-bottom: 3rem;
font-size: 1.25em;
}
.list-grid ol {
padding: 0;
}
.list-grid li {
line-height: 1.5;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding: .5em 0;
background-color: #8AFF33;
}
@media only screen and (min-width: 500px) {
.lead {
font-size: 5vmin;
}
.btn-lg {
font-size: 4vmin;
}
.list-grid ol {
column-count: 3;
}
}
#maintainer{
color: #e5271d;
}