forked from hctnm2/Open-Source-Enthusiast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
105 lines (85 loc) · 1.43 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
/* CSS Class */
* {
box-sizing: border-box;
margin:0;
padding:0;
}
body{
background-color: #a8dadc;
margin:20px;
}
h1{
padding-top: 2.5rem;
padding-bottom: 2rem;
margin: 0;
font-family: 'Dancing Script', cursive;
}
h2{
padding-bottom: 3.5rem;
font-weight: bold;
font-family: 'Zilla Slab', serif;
}
p{
font-family: 'Zilla Slab', serif;
}
a{
color: black;
font-family: 'Zilla Slab', serif;
font-size: 1.7rem;
content: justify;
}
.btn{
border-radius: 5%;
background-color: #a8dadc;
color: black;
font-family: 'Zilla Slab', serif;
font-weight: bold;
border-color: #00FFFF;
/*transition: 0.3s;*/
transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn:hover{
background-color: black;
border-color: #ff9100;
}
.jumbotron-fluid{
padding: 10px;
}
.center h2{
text-align: center;
}
.center li{
text-align: center;
}
li {
list-style: none;
}
/* -------- */
.header-bg{
background-color: #1f1f1d;
}
.jumbotron-fluid{
/* background-color: #f76c5e; */
text-align: center;
}
.jumbotron-fluid h1{
color: white;
font-size: 8rem;
}
.jumbotron-fluid p{
color: white;
}
#footer{
background-color: blue;
text-align: center;
color: red;
bottom: 0px;
}
.list-grid ol{
column-count: 3;
}
@media (max-width: 768px) {
.jumbotron-fluid h1 {
font-size: 4rem;
}
}