-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (86 loc) · 1.31 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
/* colors and fonts */
body{
background-color: #F7F9FC;
color: blue;
font-family: font-family: 'Inter', sans-serif;
font-siza: 17px;
font-weight: lighter;
}
h1, h2, h3 {
font-family: 'Mulish', sans-serif;
}
h1 {
color: black;
font-size: 32px;
font-weight: 900;
}
h2 {
color: black;
font-size: 20px;
font-weight: lighter;
font-weight: 500;
}
a {
text-decoration: none;
color: #6B72E1;
font-family: 'Mulish', sans-serif;
font-size: 16px;
font-weight: 600;
}
a:hover {
color: black;
}
/*custom desigh with class*/
.container {
width: 700px;
margin: 40px auto;
}
@media (max-width: 760px) {
.container {
width: 600px;
}
}
@media (max-width: 500px) {
.container {
width: 400px;
}
}
.card-white {
background-color: white;
padding: 40px;
box-shadow: 0px 10ox 30px rgba(0, 0, 0, 0.1);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
}
.img-circle {
border-radius: 50%;
}
.btn-blue {
background-color: #6B72E1;
color: white;
padding:15px 20px;
border-radius: 4px;
}
.btn-blue:hover {
background-color: black;
color: white;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
}
.list-inline i {
font-size: 50px;
color: rgb(230, 230, 230);
}
.list-inline i:hover {
color: black;
}
#introduction p {
margin-bottom: 40px;
}