Fixed non-link services displaying as links
This commit is contained in:
parent
c9d094e88a
commit
28e0eadd85
@ -541,6 +541,24 @@ body.mobile-nav-active #mobile-nav-toggle {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#network .service-icon-no-link {
|
||||||
|
float: left;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: 0.5s;
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network .service-icon-no-link i {
|
||||||
|
color: #000;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network .service-item:hover .service-title a {
|
||||||
|
color: #1a82d8;
|
||||||
|
}
|
||||||
|
|
||||||
#network .service-title {
|
#network .service-title {
|
||||||
margin-left: 80px;
|
margin-left: 80px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
29
index.html
29
index.html
@ -12,19 +12,21 @@
|
|||||||
<meta name="robots" content="index,follow"/>
|
<meta name="robots" content="index,follow"/>
|
||||||
|
|
||||||
<!-- Facebook integration meta -->
|
<!-- Facebook integration meta -->
|
||||||
<meta property="og:title" content="E.N. Paul"/>
|
<meta property="og:title" content="ENPaul Homepage"/>
|
||||||
<meta property='og:locale' content="en_US"/>
|
|
||||||
<meta property='og:description' content="E N Paul personal landing page and Network Services website"/>
|
|
||||||
<meta property="og:type" content="Website"/>
|
|
||||||
<meta property='og:site_name' content="E.N. Paul"/>
|
|
||||||
<meta property="og:url" content="https://enpaul.net/"/>
|
<meta property="og:url" content="https://enpaul.net/"/>
|
||||||
|
<meta property='og:site_name' content="ENPN"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property='og:locale' content="en_US"/>
|
||||||
|
<meta property="og:image" content="https://enpaul.net/img/network.jpg"/>
|
||||||
|
<meta property='og:description' content="Ethan Paul's personal landing page and overview website"/>
|
||||||
|
|
||||||
<!-- Twitter integration meta -->
|
<!-- Twitter integration meta -->
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:site" content="">
|
<meta name="twitter:site" content="@theenpaul">
|
||||||
<meta name="twitter:title" content="E.N. Paul">
|
<meta name="twitter:title" content="ENPaul Homepage">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="Ethan Paul's personal landing page and overview website">
|
||||||
<meta name="twitter:image" content="">
|
<meta name="twitter:image" content="https://enpaul.net/img/network.jpg">
|
||||||
|
<meta name="twitter:image:alt" content="ENPN">
|
||||||
|
|
||||||
<!-- Page title and favicon definition -->
|
<!-- Page title and favicon definition -->
|
||||||
<title>E.N. Paul</title>
|
<title>E.N. Paul</title>
|
||||||
@ -60,7 +62,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1>Ethan N. Paul</h1>
|
<h1>Ethan N. Paul</h1>
|
||||||
<h2>Engineer, programmer, and <span class="rotating">tinkerer, student, designer, mechanic, handyman, hiker, traveler, kayaker, swimmer</span></h2>
|
<h2>Engineer, developer, and <span class="rotating">tinkerer, student, designer, mechanic, handyman, hiker, traveler, kayaker, swimmer, programmer, debugger</span></h2>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<a href="#about" class="btn-services">About</a>
|
<a href="#about" class="btn-services">About</a>
|
||||||
<a href="#contact" class="btn-services">Contact</a>
|
<a href="#contact" class="btn-services">Contact</a>
|
||||||
@ -160,7 +162,7 @@
|
|||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-4 service-item">
|
<div class="col-md-4 service-item">
|
||||||
<div class="service-icon"><i class="fa fa-sitemap"></i></div>
|
<div class="service-icon-no-link"><i class="fa fa-sitemap"></i></div>
|
||||||
<h4 class="service-title">Active Directory</h4>
|
<h4 class="service-title">Active Directory</h4>
|
||||||
<p class="service-description"><a href="https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview" target="_blank">Active Directory Domain Services (ADDS)</a> provides user authentication, administration, and security.</p>
|
<p class="service-description"><a href="https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview" target="_blank">Active Directory Domain Services (ADDS)</a> provides user authentication, administration, and security.</p>
|
||||||
<div class="service-link">
|
<div class="service-link">
|
||||||
@ -168,7 +170,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 service-item">
|
<div class="col-md-4 service-item">
|
||||||
<div class="service-icon"><i class="fa fa-key"></i></div>
|
<div class="service-icon-no-link"><i class="fa fa-key"></i></div>
|
||||||
<h4 class="service-title">VPN</h4>
|
<h4 class="service-title">VPN</h4>
|
||||||
<p class="service-description">Virtual Private Networking (VPN) allows users to secure their network traffic from anywhere in the world.</p>
|
<p class="service-description">Virtual Private Networking (VPN) allows users to secure their network traffic from anywhere in the world.</p>
|
||||||
<div class="service-link">
|
<div class="service-link">
|
||||||
@ -208,8 +210,7 @@
|
|||||||
<h4 class="service-title"><a href="https://docs.enpaul.net/">Documentation</a></h4>
|
<h4 class="service-title"><a href="https://docs.enpaul.net/">Documentation</a></h4>
|
||||||
<p class="service-description">Any system is only as good as its documentation. The docs, powered by <a href="http://www.mkdocs.org/" target="_blank">MkDocs</a>, are constantly being updated.</p>
|
<p class="service-description">Any system is only as good as its documentation. The docs, powered by <a href="http://www.mkdocs.org/" target="_blank">MkDocs</a>, are constantly being updated.</p>
|
||||||
<div class="service-link">
|
<div class="service-link">
|
||||||
<a class=" btn btn-default" href="https://docs.enpaul.net/docs-meta/overview/"><i class="fa fa-book"></i> Meta Docs</a>
|
<a class=" btn btn-default" href="https://docs.enpaul.net/docs-meta/overview/"><i class="fa fa-book"></i> Docs</a>
|
||||||
<a class=" btn btn-default" href="https://docs.enpaul.net/"><i class="fa fa-chevron-right"></i> Docs</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user