diff --git a/DevGrants/Third Voting/index.html b/DevGrants/Third Voting/index.html new file mode 100644 index 000000000..bea8af0fb --- /dev/null +++ b/DevGrants/Third Voting/index.html @@ -0,0 +1,55 @@ + + + + Choice Coin + + + + + + +
+

Choice Coin

+ +
+
+
+ +

Choice Coin Voting Software

+ +
+

Yes

+

No

+
+ +
+
+ + + \ No newline at end of file diff --git a/DevGrants/Third Voting/myBack.jpg b/DevGrants/Third Voting/myBack.jpg new file mode 100644 index 000000000..5ce2f81e9 Binary files /dev/null and b/DevGrants/Third Voting/myBack.jpg differ diff --git a/DevGrants/Third Voting/style.css b/DevGrants/Third Voting/style.css new file mode 100644 index 000000000..18aadc809 --- /dev/null +++ b/DevGrants/Third Voting/style.css @@ -0,0 +1,82 @@ +* { + padding: 0; + margin: 0; +} +.vid { + height: 100%; + width: 100%; + position: absolute; + background-size: cover; +} +body { + background-image: url("myBack.jpg"); + background-repeat: no-repeat; + background-position: center center; +} +.he { + padding: 10px; + background-color: white; + display: flex; + justify-content: space-between; +} +button { + padding: 5px; + border-radius: 5px; + background-color: black; + color: white; +} +.mainDiv { + width: 400px; + height: 400px; + background-color: transparent; + margin: auto; + margin-top: 130px; + border: 4px solid; + display: flex; + justify-content: center; + border-radius: 4px; +} +.wf { + display: flex; + justify-content: center; + flex-direction: column; +} +.address { + width: 250px; + height: 25px; + padding: 5px; + background-color: transparent; + margin: 20px; + border-radius: 5px; +} +p { + margin: 20px; + margin-left: 50px; +} +.eme { + border-radius: 5px; + height: 100px; + width: 300px; + margin: 20px; + background-color: transparent; +} +.yesNo { + display: flex; + flex-direction: row; + justify-content: space-around; +} +.submit { + margin-top: 20px; +} +.yes:hover { + background-color: rgb(71, 160, 71); + padding: 10px; + border-radius: 5px; + color: white; +} +.no:hover { + background-color: red; + color: white; + padding: 10px; + border-radius: 5px; +}