Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update UI about content #17

Merged
merged 1 commit into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Caveat">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script class="mode" src="/scripts/blurFilterEffect.js"></script>
<script src="/scripts/blurFilterEffect.js"></script>
</head>
<body>
<div id="vanta"></div>
Expand Down
8 changes: 4 additions & 4 deletions scr/about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
</div>
</nav>
<div class="content">
<div class="aboutContent" style="margin-top: 30vh; margin-left: 10vh; margin-right: 10vh; gap: 5%; filter: blur(80%);">
<img src="https://github.com/adamjatim/adamjatim.github.io/blob/main/img/adamPhoto.png?raw=true" style="justify-content: center; margin: auto; margin-left: 5%;">
<p style="font-family: Lexend, sans-serif; font-style: normal; font-weight: 100; font-size: medium; justify-content: center; justify-items: center; margin: auto; margin-right: 5%;">
"I am a programmer from Indonesia, I became interested in this field since I was in junior high school. I'm pretty good with C++ because it was the first language I learned."
<div class="aboutContent">
<img src="https://github.com/adamjatim/adamjatim.github.io/blob/main/img/adamPhoto.png?raw=true">
<p>
I am a programmer from Indonesia, I became interested in this field since I was in junior high school. I'm pretty good with C++ because it was the first language I learned.
<br>
nice to meet you.
</p>
Expand Down
18 changes: 18 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ nav {
.aboutContent {
display: flex;
flex-direction: row;
margin-top: 30vh;
margin-left: 20vh;
margin-right: 20vh;
height: 15em;
font-size:medium;
font-weight: bold;
Expand All @@ -108,6 +111,21 @@ nav {
height: 12em;
border-radius: 100%;
border: 2.5px solid #fefcfb;
justify-content: center;
margin: auto;
margin-left: 5%;
}

.aboutContent p {
font-family: Lexend, sans-serif;
font-style: normal;
font-weight: 100;
font-size: medium;
justify-content: center;
justify-items: center;
margin: auto;
margin-right: 5%;
margin-left: 5%;
}

.container {
Expand Down