This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathmain.css
More file actions
116 lines (85 loc) · 1.94 KB
/
main.css
File metadata and controls
116 lines (85 loc) · 1.94 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
/* Add your CSS here */
/* Dont' forget to link this file to your HTML in the <head> */
/* ### Fonts **Headings:** Poppins - Semi-bold 600 https: //fonts.google.com/specimen/Poppins
**Body:** Quicksand - Light 300 https: //fonts.google.com/specimen/Quicksand
### Colors Dark beige: #E6DACD Light beige: #F4ECE6 Royal blue: #0150FD Black: #000 White: #FFF */
body {
margin: 0;
padding: 0;
font-family: 'Quicksand', sans-serif;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 140px 800px 200px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
height: 100px;
padding: 8px 40px;
margin-bottom: 30px;
}
header a {
text-decoration: none;
padding: 10px;
}
.title {
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
line-height: 0%;
margin-top: 16px;
}
.box {
background-color: #0150FD;
width: 16px;
height: 16px;
margin-right: 16px;
margin-left: 16px;
align-self: center;
}
.name {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 25px;
}
.portfolio-card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
width: 400px;
height: 500px;
background-color:#F4ECE6;
}
.portfolio-card img {
width: 130px;
border-radius: 50%;
}
.social-media-nav img {
width: 1.3rem;
padding: 0.5rem;
border-radius: 0%;
}
.first-button {
background-color: #0150FD;
color: #FFF;
align-self: center;
justify-content: center;
font-size: 15px;
font-weight: 300;
width: 135px;
height: 35px;
border-radius: 35px;
border: none;
}
.second-button {
background-color: #FFF;
color: #000;
align-self: center;
justify-content: center;
font-size: 15px;
font-weight: 300;
width: 135px;
height: 35px;
border-radius: 35px;
border: 1px solid #000;
}