aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css/index.css
diff options
context:
space:
mode:
authorRyan Mehri <[email protected]>2020-05-12 09:29:49 -0600
committerGitHub <[email protected]>2020-05-12 09:29:49 -0600
commitc0fc08d77570232cfda3f6e2bdbac2c3bf1aafeb (patch)
tree9463f3be987993bda22ef4bfc3a56c9174fceee8 /frontend/src/css/index.css
parentMerge pull request #17 from jackyzha0/password (diff)
parentworking no pass rendering (diff)
downloadctrl-v-c0fc08d77570232cfda3f6e2bdbac2c3bf1aafeb.tar.xz
ctrl-v-c0fc08d77570232cfda3f6e2bdbac2c3bf1aafeb.zip
Merge pull request #18 from jackyzha0/no-pass-rendering
no password paste rendering
Diffstat (limited to 'frontend/src/css/index.css')
-rw-r--r--frontend/src/css/index.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css
index 3d05fa0..3279aac 100644
--- a/frontend/src/css/index.css
+++ b/frontend/src/css/index.css
@@ -94,4 +94,39 @@ input[type=submit] {
padding: 0.8em 2em;
margin: 2em 0;
outline: 0;
+}
+
+ul {
+ list-style-type: none;
+ display: inline-block;
+}
+
+li {
+ display: inline-block;
+ margin: 0 1em;
+}
+
+.mainLogo {
+ display: inline-block;
+}
+
+.mainLogo a {
+ text-decoration: none;
+ position: relative;
+ margin: 3px;
+}
+
+.mainLogo a::after {
+ content: "";
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ height: 4px;
+ background-color: #111111;
+ width: 0;
+ transition: width 0.25s ease;
+}
+
+.mainLogo:hover a::after {
+ width: 100%;
} \ No newline at end of file