-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (67 loc) · 1.21 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
body {
background-color: #FFFFFF ;
font-family: Roboto;
color: #525F7F;
font-size: 1em;
line-height: 2em;
border: 5em;
}
h1, h2, h3 {
font-family: Roboto;
font-size: 2em;
line-height: 10px;
color: #525F7F;
line-height:1em;
}
li {
color: #24B47E;
}
img {
height:100px;
width: 100px;
}
ul {
text-align: center;
padding: 0;
}
a:hover {
text-decoration: underline;
background-color: #24B47E;
width: 100px;
padding: 10px;
border-radius: 4px;
}
.card-grey{
background-color: #F6F9FC;
border-radius: 4px;
box-shadow: 12px 12px 2px 1px #F6F9FC10;
padding: 30px;
border: 1px solid lightgrey;
text-align: center;
}
.list-inline > li {
display: inline-block;
padding: 10px;
text-align: center;
}
.container{
margin:0px auto;
}
@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;
}
}