l-g-t commited on
Commit
cc7d132
·
verified ·
1 Parent(s): f28a59d

Create style.css

Browse files
Files changed (1) hide show
  1. public-html/style.css +27 -0
public-html/style.css ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: sans-serif;
3
+ text-align: center;
4
+ background: #f0f0f0;
5
+ }
6
+
7
+ table {
8
+ margin: 0 auto;
9
+ border-collapse: collapse;
10
+ }
11
+
12
+ td {
13
+ width: 30px;
14
+ height: 30px;
15
+ border: 1px solid #999;
16
+ text-align: center;
17
+ vertical-align: middle;
18
+ font-size: 20px;
19
+ }
20
+
21
+ button {
22
+ width: 100%;
23
+ height: 100%;
24
+ border: none;
25
+ background: transparent;
26
+ cursor: pointer;
27
+ }