diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-14 19:28:10 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-14 19:28:10 -0500 |
commit | f02524b59288d68e78a108e9c9e2ca4c7f662f07 (patch) | |
tree | db0a7ad310a92442274d862c7fc5d9994d99eaa5 /public/css | |
parent | fix seo (diff) | |
download | xssbook-f02524b59288d68e78a108e9c9e2ca4c7f662f07.tar.gz xssbook-f02524b59288d68e78a108e9c9e2ca4c7f662f07.tar.bz2 xssbook-f02524b59288d68e78a108e9c9e2ca4c7f662f07.zip |
friends
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/profile.css | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/public/css/profile.css b/public/css/profile.css index 8f212dd..112b1bf 100644 --- a/public/css/profile.css +++ b/public/css/profile.css @@ -119,7 +119,7 @@ body { border-bottom: 3px solid var(--logo) !important; } -#about { +#about, #friends { margin-top: 2em; align-self: center; padding: 0; @@ -160,4 +160,36 @@ body { .logout { flex: 1; +} + +.follow { + display: flex; + justify-content: center; + align-items: center; + height: 40px; + width: 175px; + background-color: var(--secondary); + border-radius: 10px; + cursor: pointer; +} + +.follow>span { + color: var(--medium); +} + +.friend { + background-color: var(--logo); + border: 1px solid var(#ffffff) +} + +.friend>span { + color: #ffffff; +} + +.right { + flex: 1; + display: flex; + justify-content: end; + align-items: center; + padding-right: 50px; }
\ No newline at end of file |