This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (76 loc) · 1.35 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
body {
background-color: white;
font-family: 'PT Sans Caption', sans-serif;
color: #565656;
font-size: 20;
line-height: 1.5;
font-weight: 200
}
a {
color: #AAAAAA;
text-decoration: none;
}
a:hover {
background-color: #ACFCD9
}
h1, h2, h3 {
color: #565656 ;
font-family:
font-size: 20;
line-height: 1.2;
}
.container {
width: 500px; /* This sets the width */
margin: 0 auto; /* This automatically sets left/right margins */
align-self: center;
background-color: pink;
}
.card {
margin: 0 auto; /* This puts it in the middle */
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 6px;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
width: 70%;
max-width: 800px
}
.img-corners {
border-radius: 2%;
}
.text-center {
text-align: center;
}
.card-white {
background: white;
padding: 30px;
border: 1px solid lightgrey;
}
.list-inline {
padding-left: 0;
}
.list-inline li {
display: inline-block;
padding: 20px;
}
.list-inline li i{
font-size: 25px;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}