Browse Source

added name field to photo ul page

master
dennisdebel 9 years ago
parent
commit
b68bae4f42
  1. 2
      web/index.html
  2. 21
      web/style.css

2
web/index.html

@ -44,6 +44,8 @@
<button id="rot-left" class="rot-left">Rotate left</button>
<button id="rot-right" class="rot-right">Rotate right</button>
<br><br>
<textarea id="name" rows="1" placeholder="Your Name"></textarea>
<br>
<button id="submit-photo" class="photo-buttons">Send</button>

21
web/style.css

@ -219,6 +219,27 @@ margin:10px;
}
#name{
-webkit-appearance: none;
-moz-appearance: none;
display: block;
outline:none;
width: 98%;
margin: 0 auto;
line-height: 40px;
border:none;
-webkit-border-radius: 13px;
-moz-border-radius: 13px;
border-radius: 13px;
font-family: inherit;
font-size: 20px;
-moz-box-shadow:0 0 23px #bbb;
-webkit-box-shadow:0 0 23px #bbb;
box-shadow:0 0 23px #bbb;
}
#message-form .send-button {
-webkit-appearance: none;

Loading…
Cancel
Save