-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (80 loc) · 1.31 KB
/
style.css
File metadata and controls
98 lines (80 loc) · 1.31 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
html {
background-color: #f8f9fa !important
}
#hero {
background-image: url('./images/lines.png'), linear-gradient(45deg, #4fa49a, #4361c2) !important;
background-position: 50% 0px;
color: white;
}
#hero-body {
font-weight: 300;
}
#hero-title,
#hero-subtitle,
#hero-body,
#contacts,
#profile {
align-self: center;
text-align: center;
}
#profile {
display: block;
margin: auto;
}
#contacts {
font-size: 20px;
}
#contacts a {
color: rgba(255, 255, 255, .8);
}
#contacts a:hover {
color: rgba(255, 255, 255, 1);
}
#profile {
height: 200px;
width: 200px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
margin-right: 20px;
}
.card img {
height: 180px;
object-fit: cover;
}
footer {
color: #6c757d;
padding: 19px;
margin-top: 20px;
background-color: #f8f9fa;
}
#footer-title {
text-align: center;
}
#footer-wrap {
max-width: 700px;
}
@media (min-width: 992px) {
#hero-title,
#hero-subtitle,
#hero-body,
#contacts,
#profile {
text-align: left;
}
}
@media (max-width: 992px) {
.card-deck .card {
flex-basis: 50%;
margin-bottom: 20px;
/* change this value for each breakpoint*/
}
.card img {
height: 250px;
}
}