Last active
January 14, 2021 22:52
-
-
Save lilyannehall/0dabb4d52a30aa0cccda8fd348be85e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: #fff; | |
} | |
nav ul.links { | |
background: #fff; | |
text-align: center; | |
} | |
nav .links li { | |
display: inline-block; | |
} | |
nav .links li a { | |
color: #f0f; | |
} | |
.profile { | |
border: 18px solid #000; | |
} | |
.profile h1 { | |
font-size: 2.5em; | |
} | |
.profile-pic img { | |
border-radius: 80px; | |
} | |
.general-about { | |
font-size: 16px; | |
} | |
.mood > p::first-of-type { | |
font-size: 28px; | |
text-align: center; | |
} | |
.mood > p > b::first-of-type { | |
display: none; | |
} | |
.general-about .details { | |
font-style: italic; | |
letter-spacing: 0.2em; | |
} | |
.heading { | |
background: #f0f !important; | |
color: #fff !important; | |
letter-spacing: 0.2em; | |
font-size: 14px; | |
} | |
.profile .col > div { | |
border: none; | |
} | |
a { | |
color: #000; | |
} | |
a:hover { | |
text-decoration: line-through; | |
color: #0f0 | |
} | |
.online { | |
font-size: 50% !important; | |
text-align: center; | |
} | |
.details-table td:first-child { | |
background: #0ff; | |
color: #fff; | |
font-size: 14px; | |
} | |
.details-table td { | |
background: #fff; | |
font-size: 14px; | |
} | |
.profile .blurbs .section h4 { | |
display: none; | |
} | |
.profile .blurbs .section p, .profile .friends p { | |
text-align: center; | |
} | |
.profile .friends .person { | |
width: 96px; | |
} | |
.friends-grid { | |
text-align: center; | |
} | |
.comments-table td:first-child, .music-table td:first-child { | |
background: #0ff; | |
color: #fff; | |
border: 6px solid #fff; | |
} | |
.comments-table td, .music-table td { | |
background: #fff; | |
border: none; | |
} | |
.comments-table { | |
border: none; | |
} | |
footer { | |
background: #fff; | |
} | |
iframe { | |
border: 16px solid #0ff; | |
} | |
#comments p { | |
text-align: left; | |
} | |
.comments-table td::first a { | |
color: #fff !important; | |
} | |
.profile .friends .person p { | |
color: inherit !important; | |
} | |
nav .top { | |
background: #fff; | |
color: #000; | |
} | |
.top .logo { | |
filter: invert(100%); | |
} | |
#q { | |
border: 3px solid #0ff; | |
padding: 4px; | |
} | |
.top form button { | |
background: #000; | |
border: none; | |
padding: 7px; | |
color: #fff; | |
} | |
.top form button:hover { | |
background: #0f0; | |
cursor: pointer; | |
text-decoration: line-through; | |
} | |
.logout-btn { | |
color: #000 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment