LoginSignup
0
0

More than 5 years have passed since last update.

文字カウンターアプリ

Last updated at Posted at 2017-06-22

準備中

``

<!DOCTYPE html>



Comment Form





submit

30characters left




``

``
@charset="UTF-8";
body {
font-family: Verdana, sans-serif;
font-size: 16px;
background: #e0e0e0;
}

.container {
width: 400px;
margin: 30px auto;
}

textarea {
width: 400px;
box-sizing:border-box;/ボーダーをボックスの中に収める/
height: 200px;
padding: 14px;
font-size: 16px;
border: none;
border-radius: 5px;
margin-bottom: 14px;
line-height: 1.5;
}

textarea:focus {
outline: none;
}

p {
color: #333;
font-size: 14px;
margin: 0;
padding-top: 10px;
}

label {

font-weight: bold;
}

.btn {
display: inline-block;
width: 150px;
background: #00aaff;
padding: 5px;
color:#fff;
border-radius: 5px;
text-align: center;
cursor: pointer;
box-shadow: 0 4px 0 #0088cc;
float: right;
}
``

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0