-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (74 loc) · 1.32 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
@import url(https://fonts.googleapis.com/css?family=Lora:400,700|Roboto:300,400,500,700,900);
@import url(https://use.fontawesome.com/releases/v5.2.0/css/all.css);
body {
background: #F7F9FC;
color: #575F7D;
font-family: 'Lora', serif;
font-size: 17px;
font-weight: lighter;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
}
h1 {
color: #575F7D;
font-size: 32px;
font-weight: 900;
}
h2 {
color: #7ECE90;
font-size: 20px;
font-weight: lighter;
font-weight: 500;
}
a {
font-family: 'Roboto', sans-serif;
text-decoration: none;
color: #6B72E1;
font-weight: 600;
font-size: 16px;
}
a:hover {
color: rgb(250,250,250);
}
.card {
background-color: white;
padding: 32px;
border-radius: 4px;
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
width: 500px;
margin: 32px auto;
}
.text-center {
text-align: center;
}
.img-circle {
border-radius: 50%;
width: 150px;
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
}
.list-inline {
list-style: none;
padding-left: 0;
}
.list-inline li {
display: inline-block;
padding: 0px 16px;
}
.btn-blue {
background-color: blue;
color: white;
border-radius: 5px;
padding: 16px 24px;
text-decoration: none;
}
.btn-blue:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
#intro p {
margin-bottom: 24px;
}
#footer a {
color: blue;
font-size: 40px;
}