-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (65 loc) · 1.14 KB
/
style.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
body{
color: rgb(16, 14, 34);
background-color: aliceblue;
font-family: 'Courier New', Courier, monospace;
width: 100vw;
margin:auto;
}
header{
text-align: center;
}
main{
margin: auto;
min-width: 500px;
width: 60vw;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
h1{
text-align: center;
font-weight: 900;
}
div{
margin: 10px;
}
input{
border: 2px grey solid;
border-radius: 5px;
}
button{
border-radius: 2px;
border: none;
background-color: rgba(20, 11, 11, 0.589);
color: white;
padding: 5px 10px;
margin-left: 10px;
font-weight: 700;
border-radius: 5px;
}
#valuesContainer{
/* overflow: scroll; */
}
section{
background-color: rgba(202, 201, 201, 0.363);
/* min-width: 500px; */
margin: 10px;
border-radius: 20px;
padding: 10px;
/* background-color: aliceblue; */
}
#resultContainer{
}
#table{
/* float: right; */
}
table{
border-radius: 3px;
padding: 10px 5px;
border: 1px solid black;
}
td{
text-align: center;
width: 80px;
border-radius: 3px;
padding: 2px 10px;
border: 1px solid black;
}