aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw3/strap012/passwordcheck.css
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2021-02-26 17:22:49 -0600
committerRossTheRoss <mstrapp@protonmail.com>2021-02-26 17:22:49 -0600
commita7a2c5216530e1c16146be5c840f8baf0cfd01ba (patch)
tree9244872856116bbe0c05468a24a5bd5735581059 /csci4131/hw3/strap012/passwordcheck.css
parentfinish (diff)
downloadhomework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar.gz
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar.bz2
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar.lz
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar.xz
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.tar.zst
homework-a7a2c5216530e1c16146be5c840f8baf0cfd01ba.zip
e
Diffstat (limited to 'csci4131/hw3/strap012/passwordcheck.css')
-rw-r--r--csci4131/hw3/strap012/passwordcheck.css60
1 files changed, 60 insertions, 0 deletions
diff --git a/csci4131/hw3/strap012/passwordcheck.css b/csci4131/hw3/strap012/passwordcheck.css
new file mode 100644
index 0000000..beceb1c
--- /dev/null
+++ b/csci4131/hw3/strap012/passwordcheck.css
@@ -0,0 +1,60 @@
+#password{
+ margin: 0;
+ padding: 0;
+ font-family: 'Raleway', sans-serif;
+ font-size: 15px;
+ line-height: 1.5;
+}
+#container {
+ width: 535px;
+ background: #ffffff;
+ padding: 20px;
+ margin: 90px auto;
+ border-radius: 5px;
+ height: 150px;
+ border: 2px solid gray;
+}
+#header {
+ text-align: center;
+ background-color: #FEFFED;
+ border-radius: 5px;
+ margin: -39px -20px 10px -20px;
+}
+.password{
+ padding-top: 10px;
+}
+#content {
+ margin-left: 57px;
+ margin-top: 40px;
+}
+#register label{
+ margin-right:5px;
+}
+#register input {
+ padding: 5px 14px;
+ border: 1px solid #d5d9da;
+ box-shadow: 0 0 9px #0E34F5 inset;
+ width: 272px;
+ font-size: 1em;
+ height: 25px;
+}
+#register .short{
+ font-weight:bold;
+ color:#FF0000;
+ font-size:larger;
+}
+#register .weak{
+ font-weight:bold;
+ color:orange;
+ font-size:larger;
+}
+#register .good{
+ font-weight:bold;
+ color:#2D98F3;
+ font-size:larger;
+}
+#register .strong{
+ font-weight:bold;
+ color: limegreen;
+ font-size:larger;
+}