-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersonalPortfolion.css
More file actions
118 lines (101 loc) · 1.78 KB
/
PersonalPortfolion.css
File metadata and controls
118 lines (101 loc) · 1.78 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
#navbar {
background-color: #be3144;
margin-top: -10px;
padding: 20px;
position: fixed;
width: 100%;
}
#welcome-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
p {
font-size: 2rem;
}
}
.navbar-links {
color: white;
float: right;
font-size: 30px;
font-family: "Poppins", "sans-serif";
padding: 15px 5px;
margin-top: -20px;
margin-right: 40px;
text-align: center;
text-decoration: none;
}
.navbar-links:hover {
background-color: #45567d;
}
body {
background-color: #232426;
height: 100vh;
width: 100vw;
}
h1,
h2 {
color: #f0f0f0;
font-family: "Raleway", "sans-serif";
}
p {
color: #be3144;
font-family: "Poppins", "sans-serif";
font-size: 1.8rem;
margin-top: -20px;
}
#project-intro {
display: block;
text-align: center;
padding-top: 150px;
background-color: #45567d;
font-size: 3rem;
}
h1 {
font-size: 4rem;
}
#projects {
display: flex;
justify-content: space-between;
margin: auto;
width: 70%;
background-color: #45567d;
}
.project-tile {
font-size: 20px;
}
figcaption {
font-size: 20px;
text-decoration: none;
color: white;
background-color: #303841;
margin-top: -5px;
padding-top: 20px;
padding-bottom: 20px;
width: 100%;
text-align: center;
}
img {
width: 350px;
height: 350px;
}
#footer {
display: block;
text-align: center;
padding-top: 250px;
padding-bottom: 250px;
background-color: #303841;
font-family: "Raleway", "sans-serif";
text-decoration: none;
}
.social-media {
height: 70px;
width: auto;
border-radius: 90%;
}
@media screen and (min-width: 1200px) {
}
}
}