mirror of
https://github.com/itme-brain/itme-brain.github.io.git
synced 2026-03-23 20:19:43 -04:00
First Push
This commit is contained in:
parent
f7668f8a90
commit
4a072c1490
2 changed files with 138 additions and 0 deletions
107
styles.css
Normal file
107
styles.css
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
:root {
|
||||
--mainColor: lightgray;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
a, a:visited, a:active {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/* Navigation Bar Styling */
|
||||
.navbar {
|
||||
background-color: var(--mainColor);
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.socialicons {
|
||||
justify-content: center;
|
||||
font-size: 25px;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-auto-flow: column;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Contact Icon Styling */
|
||||
.phoneicon {
|
||||
display: inline-block;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 3px 3px 0 3px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.mailicon {
|
||||
display: inline-block;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0 3px 0 3px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.githubicon {
|
||||
display: inline-block;
|
||||
color: black;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0 3px 0 3px;
|
||||
}
|
||||
|
||||
.twittericon {
|
||||
display: inline-block;
|
||||
color: lightblue;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0 3px 0 3px;
|
||||
}
|
||||
|
||||
.youtubeicon {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0 3px 0 3px;
|
||||
}
|
||||
|
||||
/* Heading Styling */
|
||||
|
||||
.heading {
|
||||
border-bottom: 5px solid black;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
font-size: 60px;
|
||||
font-family: 'Righteous', cursive;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 30px 0 0 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
font-size: 20px;
|
||||
font-family: 'Righteous', cursive;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
|
||||
|
||||
/* Portfolio Section Styling */
|
||||
Loading…
Add table
Add a link
Reference in a new issue