-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstyle.css
119 lines (96 loc) · 1.46 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
/* CSS Class */
* {
box-sizing: border-box;
}
h1 {
margin: 0;
}
.section.center {
display: flex;
justify-content: center;
flex-flow: row wrap;
}
.jumbotron-fluid {
padding: 10px;
}
.center h2 {
text-align: center;
}
.center li {
text-align: center;
}
li {
list-style: none;
}
/* -------- */
.header-bg {
background-color: #f76c5e;
}
.jumbotron-fluid {
/* background-color: #f76c5e; */
text-align: center;
}
.jumbotron-fluid h1 {
color: white;
font-size: 4rem;
margin: 10px;
}
.jumbotron-fluid .lead {
font-size: 2rem;
}
.jumbotron-fluid p {
color: white;
}
#footer {
background-color: blue;
text-align: center;
color: red;
bottom: 0px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: 10px;
text-align: center;
}
.card img {
width: 100px;
height: 100px;
border-radius: 50%;
}
.card h1 {
font-size: 22px;
}
.card .title {
color: grey;
font-size: 14px;
}
button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
button:hover,
a:hover {
opacity: 0.7;
}
.list-grid ol {
column-count: 3;
}
@media (max-width: 768px) {
.jumbotron-fluid h1 {
font-size: 4rem;
}
}