-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (98 loc) · 1.84 KB
/
style.css
File metadata and controls
118 lines (98 loc) · 1.84 KB
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
@import url('https://fonts.googleapis.com/css?family=Merriweather:700|Open+Sans:400,700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.8.2/css/all.css');
.container {
margin: 0 auto;
width: 900px;
}
@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;
}
}
body {
font-family: 'Open sans', sans-serif;
background-color: #F5F5F5;
color: rgb(60, 60, 60);
line-height: 1.2em;
}
h1 {
font-family: 'Merriweather', sans-serif;
}
h1, h2, h3 {
line-height: 2em;
color: #177E89;
}
p {
color: #3C3C3C;
}
.btn-red {
background-color: #E85257;
color: white;
text-decoration: none;
padding: 10px 16px;
border-radius: 5px;
transition: 1s ease;
display: inline-block;
margin: 20px 0;
widows: 50px;
border: 1px solid white;
}
.btn-red:hover {
background-color: white;
color: #E85257;
border: 1px solid #E85257;
}
.list-inline > ul > li {
display: inline-block;
padding: 0 10px;
}
.social-icons {
font-size: 40px;
color: black;
opacity: 0.4;
}
.social-icons:hover {
opacity: 1;
}
#img_profile {
width: 150px;
height: 150px;
object-fit: cover;
object-position: 40% 50%;
transition: 1s ease;
border: 5px solid white;
}
#img_profile:hover {
border: 5px solid rgba(40, 40, 40, 0.8);
cursor: wait;
}
.img-circle {
border-radius: 50%;
}
ul {
list-style: none;
padding: 0;
}
.text-center {
text-align: center;
}
.card {
margin: 30px 20px 50px 20px;
padding: 20px 50px 40px 50px;
background-color: white;
box-shadow: 0 10px 15px rgba(100, 100, 100, 0.5);
border-radius: 4px;
}