forked from ankitmalakar7/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (75 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
* {
box-sizing: border-box;
font-family: 'JetBrains Mono', monospace;
margin: 0;
padding: 0;
}
html {
@media (max-width: 1080px) {
font-size: 93.75%;
}
@media (max-width: 720px) {
font-size: 87.5%;
}
}
button {
cursor: pointer;
}
a {
color: inherit;
}
body, button {
font-size: 1rem;
font-weight: 400;
}
.jumbotron-fluid{
padding: 10px;
}
.center li{
text-align: center;
}
li {
list-style: none;
}
/* -------- */
.header-bg{
background-color: rgb(23, 15, 30);
color: rgb(229, 225, 230);
padding: 20px;
margin-bottom: 20px;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.jumbotron-fluid{
/* background-color: #f76c5e; */
text-align: center;
}
.jumbotron-fluid h1{
color: white;
font-size: 4rem;
}
.jumbotron-fluid p{
color: white;
}
#footer{
background-color: blue;
text-align: center;
color: red;
bottom: 0px;
}
.list ol{
column-count: 3;
}
@media (max-width: 720px) {
.jumbotron-fluid h1 {
font-size: 2.5rem;
}
.list ol{
display: flex;
flex-direction: column;
justify-content: center;
}
}