-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
75 lines (67 loc) · 1.36 KB
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
table{
border: 1px solid black;
border-collapse: collapse;
width: 90%;
font-size: 200%;
white-space:pre-line
}
tr,td{
border: 1px solid black;
border-collapse: collapse;
text-align: center;
}
th{
border: 1px solid black;
border-collapse: collapse;
text-align: center;
background-color: rgb(0, 103, 120);
color: white;
}
label{
margin: 1%;
font-size: 150%;
/* color:rgb(8, 45, 114) ; */
}
input{
font-size: 150%;
margin: 5px;
}
.btn1 {
-webkit-border-radius: 21;
-moz-border-radius: 21;
border-radius: 21px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
background: #0cc2cf;
padding: 10px 20px 10px 20px;
text-decoration: none;
width: 50%;
height: 10%;
}
.btn1:hover {
background: #067ab0;
text-decoration: none;
}
#draw_button{
text-align: center;
}
button{
display: inline-block;
}
.btn2 {
-webkit-border-radius: 21;
-moz-border-radius: 21;
border-radius: 21px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
background: #03a83a;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin: 10px;
}
.btn2:hover {
background: #03d92d;
text-decoration: none;
}