diff --git a/README.md b/README.md index 76d1888..4ea47a4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ AddressBook =========== Simple wish list and studying in Grunt. + +![Alt text](screeshot.png?raw=true "Optional Title") diff --git a/bower.json b/bower.json index 79bf37c..5896ca3 100644 --- a/bower.json +++ b/bower.json @@ -15,5 +15,8 @@ ], "devDependencies": { "angular": "~1.3.5" + }, + "dependencies": { + "bootstrap": "^3.3.7" } } diff --git a/index.html b/index.html index e278143..cef64d2 100644 --- a/index.html +++ b/index.html @@ -4,54 +4,98 @@ - + The Online Rolodex
-

Leslie Knope's Address Book

-
- - - - - - - -
+
+
+

Leslie Knope's Address Book

+
+
+ +
+
+
+
+
+ + +
+    +
+ + +
+   +
+ + +
+    +
+ + +
+

- - - - - - - - - - - - - - - - - - - - - - -
Contact PicContact NamePhone NumberEmail AddressImportant DatesGroup
{{person.name}}{{person.phone}}{{person.email}}{{person.dates}}{{person.group}}
+
+ + +
+ + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Contact PicContact NamePhone NumberEmail AddressImportant DatesGroupAction
{{person.name}}{{person.phone}}{{person.email}}{{person.dates}}{{person.group}}
+
+ + + + diff --git a/main.css b/main.css index 77aa8dd..07ec6a2 100644 --- a/main.css +++ b/main.css @@ -1,40 +1,55 @@ +@import 'https://fonts.googleapis.com/css?family=Raleway'; +body { + font-family: Helvetica; + background-color: #34495e; + font-family: 'Raleway', sans-serif; + color: white; +} + .image { height: 100px; width: 100px; - border: 3px solid lightgrey; } -td { - width: 200px; +h1 { + background-color: #3498db; + padding: 15px; + color: white; + font-family: 'Raleway', sans-serif; + border-radius: 10px; } - -body { - font-family: Helvetica; - background-color: whitesmoke; +.table > tbody > tr > td { + vertical-align: middle; + text-align: center; } - -form { - margin-bottom: 20px; - padding: 10px; - border-bottom: 1px solid grey; - background-color: lightgrey; +.table th{ + text-align: center; } - - - -form input { - padding: 5px; - margin: 5px; +.hiddenbox{ + display: none; } - -th{ - text-align: left; - color: darkgrey; +#target{ + background: #2ecc71; + padding: 10px; + border-radius: 10px; } - -h1 { - background-color: grey; - margin: 0; +.btn-info{ + margin-top: 30px; +} +.data{ + background: #2c3e50; + border-radius: 10px; padding: 10px; - color: black; + height: 400px; + overflow: scroll; + overflow-x: hidden; +} +::-webkit-scrollbar { + width: 5px; } +::-webkit-scrollbar-thumb { + -webkit-border-radius: 10px; + border-radius: 10px; + background: #1abc9c; + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); +} \ No newline at end of file diff --git a/screeshot.png b/screeshot.png new file mode 100644 index 0000000..a43301a Binary files /dev/null and b/screeshot.png differ