diff options
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..a83cd47 --- /dev/null +++ b/styles.css @@ -0,0 +1,51 @@ +html{ + background-color:skyblue +} + +th{ + padding:10px; + font-size:110%; +} + +td{ + text-align:center; + padding: 5px ; +} + +input{ + padding:10px; + margin:5px; + margin-top:10px; +} + +table{ + margin-top:10px; + border: 1px solid black; +} + +th,tr,td{ + border:1px solid black; +} + +body{ + font-family:sans-serif; + width:80%; + margin:auto; + font-size:12pt; +} + +#msg{ + border: 1px solid black; + resize:vertical; + width:50%; +} + +@media screen and (max-width: 740px) { + body { font-size:0.8em; } + #msg{width:100%;} + th, td{ padding:3px; } + input { + padding:4px; + margin: 2px; + } +} |