-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (91 loc) · 1.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
padding: 10px;
margin: 0px;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Raleway', sans-serif;
background-color: rgba(0,0,0,.05);
}
#container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #ddd;
width: 80%;
height: 100%;
margin: 0px;
padding: 10px;
border: 1px solid rgb(100, 100, 100);
}
h1 {
text-align: center;
}
#input-container {
width: fit-content;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
margin: 0px;
/* background-color: rgba(255,0,0,.5); */
}
#examples-container {
width: 100%;
/* background-color: blue; */
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0px;
padding: 0px;
}
#handbook {
width: 100%;
/* background-color: blue; */
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 10px;
padding: 0px;
}
h2 {
margin: 0px;
font-size: 17pt;
}
#examples-li {
margin: 0px;
padding: 0px;
}
#label {
margin-top: 10px;
margin-bottom: 5px;
}
#selection-container {
display: flex;
flex-direction: column;
justify-content: center;
padding: 0px;
margin: 10px 0px;
}
#button {
height: 40px;
width: 120px;
margin: 10px 5px;
background-color: #aaa;
border-width: 0;
}
ul {
list-style-type: none;
}
#separator {
border-top: 1px solid #aaa;
width: 100%
}
.output-label {
font-size: 16pt;
color: rgb(70, 70, 70);
}
.output-li {
margin:10px 30px;
}