-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (66 loc) · 1.08 KB
/
styles.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
* {
box-sizing: border-box;
font-family: "Roboto", Arial, sans-serif;
font-weight: 400;
font-style: normal;
}
a {
color: inherit !important;
}
h1 {
font-weight: 600;
}
figure, p {
margin: 0 !important;
}
header {
background-color: #29333dff;
color: white;
height: 80px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.logo {
height: 45px;
}
main p {
padding: 5px 30px;
}
#portfolio-carousel .carousel-item {
display: flex;
justify-content: center;
}
#portfolio-carousel .carousel-item img {
height: 250px;
object-fit:scale-down;
width: 100%;
}
#portfolio-carousel .card {
border: 0;
padding: 0;
}
#portfolio-carousel .card-body {
padding: 0;
}
#portfolio-carousel .card-text {
padding-top: 30px;
}
#portfolio-carousel .carousel-indicators {
position: absolute;
top: 250px;
}
footer {
background-color: #29333dff;
color: white;
padding: 10px 0;
font-size: 16px;
align-items: center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
footer p {
font-size: 10px;
}
.fa-brands {
font-size: 24px;
}