-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (72 loc) · 1.12 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
body {
background-color: #F7F9FC;
color: rgb(74,44,156);
font-family: 'Roboto', serif;
font-size: 20px;
font-weight: lighter;
margin: 20px 20px;
}
h1, h2, h3 {
font-family: 'Lora', sans-serif;
}
#introduction p {
margin-bottom: 40px;
}
img {
border-radius: 75px;
}
.container {
width: 700px;
margin: 40px auto;
align-items: center;
}
.card {
background-color: white;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
}
.button {
background-color: rgb(130,117,140);
color: white;
padding: 10px 20px;
border-radius: 4px;
font-weight: bold;
text-decoration: none;
}
.button:hover {
background-color: black;
color: white;
}
a {
color: rgb(130,117,140);
}
a:hover {
color: black;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
font-size: 50px;
}
@media (max-width: 960px) {
.container {
width: 700px;
}
}
@media (max-width: 720px) {
.container {
width: 500px;
}
}
@media (max-width: 540px) {
.container {
width: 300px;
}
}