Compare commits
No commits in common. "2c0997058ea29917d8f494e4447af665faae6dfc" and "c0f85d0e98702c6ba1a26ac876557824e038bfe5" have entirely different histories.
2c0997058e
...
c0f85d0e98
@ -9,20 +9,13 @@
|
||||
/*--------------------------------------------------------------
|
||||
# General
|
||||
--------------------------------------------------------------*/
|
||||
:root {
|
||||
--highlight: #ffb727;
|
||||
--background: #fff;
|
||||
--text-color: #444;
|
||||
--text-color-alt: #fff;
|
||||
--text-color-alt-2: #eee;
|
||||
}
|
||||
body {
|
||||
font-family: "Open Sans", sans-serif;
|
||||
color: var(--text-color);
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@ -50,7 +43,7 @@ h6 {
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
z-index: 996;
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 4px;
|
||||
@ -59,13 +52,13 @@ h6 {
|
||||
|
||||
.back-to-top i {
|
||||
font-size: 28px;
|
||||
color: var(--text-color-alt);
|
||||
color: #fff;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.back-to-top:hover {
|
||||
background: #ffc550;
|
||||
color: var(--text-color-alt);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.back-to-top.active {
|
||||
@ -120,7 +113,7 @@ h6 {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 10px 15px;
|
||||
color: var(--text-color-alt);
|
||||
color: #fff;
|
||||
white-space: nowrap;
|
||||
transition: 0.3s;
|
||||
font-size: 12px;
|
||||
@ -141,7 +134,7 @@ h6 {
|
||||
.navbar .active,
|
||||
.navbar .active:focus,
|
||||
.navbar li:hover > a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
.navbar .dropdown ul {
|
||||
@ -180,7 +173,7 @@ h6 {
|
||||
.navbar .dropdown ul a:hover,
|
||||
.navbar .dropdown ul .active:hover,
|
||||
.navbar .dropdown ul li:hover > a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
.navbar .dropdown:hover > ul {
|
||||
@ -276,7 +269,7 @@ h6 {
|
||||
.navbar-mobile a:hover,
|
||||
.navbar-mobile .active,
|
||||
.navbar-mobile li:hover > a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
.navbar-mobile .getstarted,
|
||||
@ -311,7 +304,7 @@ h6 {
|
||||
.navbar-mobile .dropdown ul a:hover,
|
||||
.navbar-mobile .dropdown ul .active:hover,
|
||||
.navbar-mobile .dropdown ul li:hover > a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
.navbar-mobile .dropdown > .dropdown-active {
|
||||
@ -356,11 +349,11 @@ h6 {
|
||||
margin: 0 0 10px 0;
|
||||
font-size: 64px;
|
||||
font-family: "Satisfy", serif;
|
||||
color: var(--text-color-alt);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#hero h2 {
|
||||
color: var(--text-color-alt-2);
|
||||
color: #eee;
|
||||
margin-bottom: 50px;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
@ -379,7 +372,7 @@ h6 {
|
||||
}
|
||||
|
||||
#hero .btn-scroll:hover {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
@ -557,7 +550,7 @@ section {
|
||||
.about .content ul i {
|
||||
font-size: 16px;
|
||||
margin-right: 5px;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
@ -572,7 +565,7 @@ section {
|
||||
.about .content .count-box i {
|
||||
display: block;
|
||||
font-size: 36px;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
float: left;
|
||||
line-height: 0;
|
||||
}
|
||||
@ -648,7 +641,7 @@ section {
|
||||
width: 1px;
|
||||
height: 10px;
|
||||
transition: 0.9s;
|
||||
background-color: var(--highlight);
|
||||
background-color: #ffb727;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
@ -680,7 +673,7 @@ section {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
@ -714,25 +707,21 @@ section {
|
||||
border-radius: 50px;
|
||||
left: -9px;
|
||||
top: 0;
|
||||
background: white;
|
||||
border: 2px solid var(--highlight);
|
||||
}
|
||||
|
||||
.resume .resume-item.secondary::before {
|
||||
border-color: #82909c;
|
||||
background: #fff;
|
||||
border: 2px solid #82909c;
|
||||
}
|
||||
|
||||
.btn {
|
||||
font-size: 20px;
|
||||
border-color: var(--highlight);
|
||||
color: var(--highlight);
|
||||
border-color: #ffb727;
|
||||
color: #ffb727;
|
||||
transition: background-color 1s;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transition: background-color, color, border-color;
|
||||
color: #fff;
|
||||
background-color: var(--highlight);
|
||||
background-color: #ffb727;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
@ -763,7 +752,7 @@ section {
|
||||
.services .icon i {
|
||||
font-size: 36px;
|
||||
line-height: 1;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
.services .title {
|
||||
@ -784,11 +773,11 @@ section {
|
||||
}
|
||||
|
||||
.services .icon-box:hover {
|
||||
border-color: var(--highlight);
|
||||
border-color: #ffb727;
|
||||
}
|
||||
|
||||
.services .icon-box:hover .title a {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
@ -884,7 +873,7 @@ section {
|
||||
}
|
||||
|
||||
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
|
||||
background-color: var(--highlight);
|
||||
background-color: #ffb727;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
@ -910,7 +899,7 @@ section {
|
||||
line-height: 1;
|
||||
padding: 7px 10px;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-color);
|
||||
color: #444444;
|
||||
transition: all 0.3s ease-in-out;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
@ -918,7 +907,7 @@ section {
|
||||
.portfolio #portfolio-flters li:hover,
|
||||
.portfolio #portfolio-flters li.filter-active {
|
||||
color: #f3a200;
|
||||
border-color: var(--highlight);
|
||||
border-color: #ffb727;
|
||||
}
|
||||
|
||||
.portfolio .portfolio-item {
|
||||
@ -1010,14 +999,14 @@ section {
|
||||
height: 12px;
|
||||
background-color: #fff;
|
||||
opacity: 1;
|
||||
border: 1px solid var(--highlight);
|
||||
border: 1px solid #ffb727;
|
||||
}
|
||||
|
||||
.portfolio-details
|
||||
.portfolio-details-slider
|
||||
.swiper-pagination
|
||||
.swiper-pagination-bullet-active {
|
||||
background-color: var(--highlight);
|
||||
background-color: #ffb727;
|
||||
}
|
||||
|
||||
.portfolio-details .portfolio-info {
|
||||
@ -1082,7 +1071,7 @@ section {
|
||||
|
||||
.pricing h4 {
|
||||
font-size: 36px;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
font-weight: 600;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
margin-bottom: 20px;
|
||||
@ -1103,7 +1092,7 @@ section {
|
||||
.pricing ul {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
color: var(--text-color);
|
||||
color: #444444;
|
||||
text-align: center;
|
||||
line-height: 20px;
|
||||
font-size: 14px;
|
||||
@ -1114,7 +1103,7 @@ section {
|
||||
}
|
||||
|
||||
.pricing ul i {
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
font-size: 18px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
@ -1132,7 +1121,7 @@ section {
|
||||
}
|
||||
|
||||
.pricing .btn-buy {
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
display: inline-block;
|
||||
padding: 8px 35px;
|
||||
border-radius: 4px;
|
||||
@ -1151,7 +1140,7 @@ section {
|
||||
|
||||
.pricing .featured h3 {
|
||||
color: #fff;
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
}
|
||||
|
||||
.pricing .advanced {
|
||||
@ -1163,7 +1152,7 @@ section {
|
||||
z-index: 1;
|
||||
font-size: 14px;
|
||||
padding: 1px 0 3px 0;
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@ -1171,7 +1160,7 @@ section {
|
||||
# Contact Me
|
||||
--------------------------------------------------------------*/
|
||||
.contact .info-box {
|
||||
color: var(--text-color);
|
||||
color: #444444;
|
||||
text-align: center;
|
||||
box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
|
||||
padding: 20px 0 30px 0;
|
||||
@ -1179,7 +1168,7 @@ section {
|
||||
|
||||
.contact .info-box i.bx {
|
||||
font-size: 24px;
|
||||
color: var(--highlight);
|
||||
color: #ffb727;
|
||||
border-radius: 50%;
|
||||
padding: 15px;
|
||||
background: #fff6e4;
|
||||
@ -1225,8 +1214,8 @@ section {
|
||||
|
||||
.contact .social-links a:hover {
|
||||
color: #fff;
|
||||
border-color: var(--highlight);
|
||||
background: var(--highlight);
|
||||
border-color: #ffb727;
|
||||
background: #ffb727;
|
||||
}
|
||||
|
||||
.contact .php-email-form {
|
||||
@ -1292,7 +1281,7 @@ section {
|
||||
|
||||
.contact .php-email-form input::focus,
|
||||
.contact .php-email-form textarea::focus {
|
||||
background-color: var(--highlight);
|
||||
background-color: #ffb727;
|
||||
}
|
||||
|
||||
.contact .php-email-form input {
|
||||
@ -1304,7 +1293,7 @@ section {
|
||||
}
|
||||
|
||||
.contact .php-email-form button[type="submit"] {
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
border: 0;
|
||||
padding: 10px 24px;
|
||||
color: #fff;
|
||||
@ -1377,7 +1366,7 @@ section {
|
||||
#footer .social-links a {
|
||||
font-size: 18px;
|
||||
display: inline-block;
|
||||
background: var(--highlight);
|
||||
background: #ffb727;
|
||||
color: #fff;
|
||||
line-height: 1;
|
||||
padding: 8px 0;
|
||||
|
@ -301,8 +301,8 @@
|
||||
sparkles in their eyes when they learned about concepts I taught them.
|
||||
</p>
|
||||
</div>
|
||||
<div class="resume-item secondary" data-aos="fade-up">
|
||||
<h4 style="font-weight: normal">TA - Programming Fundamentals 2</h4>
|
||||
<div class="resume-item" data-aos="fade-up">
|
||||
<h4 style="font-weight: normal">Programming Fundamentals 2</h4>
|
||||
<h5>Spring 2023</h5>
|
||||
<p><em>9 ECTS - Prof. Matthias Hauswirth</em></p>
|
||||
<ul>
|
||||
@ -314,8 +314,8 @@
|
||||
project</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="resume-item secondary" data-aos="fade-up">
|
||||
<h4 style="font-weight: normal">TA - Systems Programming</h4>
|
||||
<div class="resume-item" data-aos="fade-up">
|
||||
<h4 style="font-weight: normal">Systems Programming</h4>
|
||||
<h5>Autumn 2022</h5>
|
||||
<p><em>6 ECTS - Prof. Antonio Carzaniga</em></p>
|
||||
<p>
|
||||
|
Loading…
Reference in New Issue
Block a user