-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
83 lines (69 loc) · 1.13 KB
/
index.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
76
77
78
79
80
81
82
83
body{
background-color: antiquewhite;
margin: 0;
}
header{
background-color: thistle;
display: block;
margin: 0;
padding-top: 1rem;
min-height: 5rem;
}
header h1{
font-size: 3rem;
color: blue;
text-align: center;
margin: 0;
transform: rotateZ(2deg);
}
#optionsContainer{
margin: 10px;
padding: 10px;
padding-top: 0px;
}
#optionsContainer{
display: flex;
justify-content: space-evenly ;
}
#optionsContainer > div{
flex-basis: 50%;
text-align: center;
}
ul{
padding: 0;
}
li{
list-style-type: none;
margin: 0.5rem 0 0.5rem 0;
}
input{
text-align: center;
}
input[type = text], #optionsLabel{
width: 200px;
display: inline-block;
margin-right: 5px;
}
input[type = number]{
width: 3rem;
}
input[type = button]{
background-color: blue;
color: aliceblue;
border-radius: 5px;
border: solid blue 1px;
padding: 5px;
margin-left: 5px;
}
#outputContainer{
text-align: center;
font-size: 2rem;
}
.devider{
width: 100%;
border-bottom: solid black 1px;
margin: 1rem 0 1rem 0;
}
.hidden{
display: none;
}