Skip to content
Open
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
21 changes: 19 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,20 @@

w.attachEvent ? w.attachEvent("onload", a) : w.addEventListener("load", a, !1)
})(window, document);</script>
<style>
.wrap-services{
display: flex;
justify-content: space-around;
}

.service-box {
display: flex;
width: 33%;
text-align: center;
margin-bottom: 5em;
}

</style>
</head>

<body itemscope itemtype="http://schema.org/WebPage" class="home blog" dir="ltr">
Expand Down Expand Up @@ -314,7 +328,9 @@ <h2 class="dark-text">Participar do GOPHP</h2>
disseminar o PHP em Goiás.
</div>
</div>
<div id="our_services_wrap" class="services-wrap our_services_wrap_piterest">
<!-- Start Services-->
<div class="wrap-services">

<div class="service-box">
<div class="single-service border-bottom-hover">
<h3 class="colored-text">Google Groups</h3>
Expand Down Expand Up @@ -344,7 +360,8 @@ <h3 class="colored-text">Telegram</h3>
</p>
</div>
</div>
</div>

</div> <!-- End Services-->
</div>
</div>
</section>
Expand Down
8 changes: 5 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1458,6 +1458,7 @@ header .navbar-brand {
}

.single-service {
margin-right: 10px;
padding: 40px 35px 40px 35px;
background: #ffffff;
border-top: 1px solid #eaeaea;
Expand All @@ -1471,12 +1472,13 @@ header .navbar-brand {
transition: all ease 0.55s;
}

.services-wrap .service-box {
display: inline-block;
width: 100%;
.service-box {
display: flex;
width: 33%;
text-align: center;
}


.single-service > h3 > a:hover, .service-icon > a:hover{
text-decoration:none;
}
Expand Down