github.com/google/go-safeweb@v0.0.0-20231219055052-64d8cfc90fbb/examples/sample-application/server/static/styles.css (about) 1 body { 2 font-family: 'Roboto', sans-serif; 3 } 4 5 input[type=text], input[type=password] { 6 width: 100%; 7 padding: 12px 20px; 8 margin: 8px 0; 9 display: inline-block; 10 border: 1px solid #ccc; 11 box-sizing: border-box; 12 } 13 14 button { 15 background-color: #4285F4; 16 color: white; 17 padding: 14px 20px; 18 margin: 8px 0; 19 border: none; 20 cursor: pointer; 21 } 22 23 textarea { 24 height: 100px; 25 } 26 27 .full-width { 28 width: 100%; 29 } 30 31 button:hover { 32 opacity: 0.8; 33 } 34 35 .padded{ 36 padding: 16px; 37 }