-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (102 loc) · 1.71 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
120
121
122
body {
background: #FBF9FC;
color: #575F7D;
font-family: 'Lora', serif;
font-size: 16px;
}
h1, h2, h3, a {
font-family: 'Roboto', sans-serif;
color: #315F6D;
}
h1 {
font-size: 32px;
font-weight: 900;
}
h2 {
color: #7EAE90;
font-size: 19px;
font-weight: 600;
}
p {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 1px;
margin-inline-end: 1px;
}
a {
color: #6B61E1;
font-weight: 600;
font-size: 16px;
text-decoration: none;
}
a:hover {
color: black;
}
ul {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
.container {
width: 600px;
margin: 50px auto;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 600px;
}
}
@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;
}
}
.card {
background-color: white;
padding: 25px;
box-shadow: 0px 10px 20px;
border-radius: 10px;
margin: 15px 0px;
text-align: center;
}
.img-circle {
border-radius: 50%;
}
.btn-blue {
background-color: #6A62E1;
color: white;
padding: 10px 20px;
border-radius: 10px;
}
.btn-blue:hover {
background-color: black;
color: white;
}
.list-inline {
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
}
.list-inline i {
font-size: 40px;
color: #6A62E1;
}
.list-inline i:hover {
color: black;
}
#information p {
margin-bottom: 30px;
}