41 lines
495 B
Sass
41 lines
495 B
Sass
|
#contact-header
|
||
|
text-align: center
|
||
|
|
||
|
h1
|
||
|
color: white
|
||
|
font:
|
||
|
size: 34px
|
||
|
weight: bold
|
||
|
|
||
|
#contact-info
|
||
|
.card
|
||
|
max-width: 680px
|
||
|
margin-top: 15px
|
||
|
padding:
|
||
|
top: 20px
|
||
|
bottom: 20px
|
||
|
background: #f0f0f0
|
||
|
|
||
|
hr
|
||
|
border-color: #666
|
||
|
|
||
|
a,
|
||
|
p,
|
||
|
h3
|
||
|
text-align: center
|
||
|
font-size: 20px
|
||
|
|
||
|
p
|
||
|
padding: 5px
|
||
|
color: #212121
|
||
|
|
||
|
a
|
||
|
color: darkred
|
||
|
text-decoration: none
|
||
|
+transition(color 200ms ease-in-out)
|
||
|
|
||
|
&:hover
|
||
|
color: red
|
||
|
|
||
|
h3
|
||
|
margin-bottom: 15px
|