-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (89 loc) · 1.65 KB
/
style.css
File metadata and controls
99 lines (89 loc) · 1.65 KB
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
body {
margin: 0px;
width: 100%;
height: 100%;
padding: 0px;
border: none;
}
.title {
font-family: monospace;
font-size: 40px;
margin-top: 10px;
margin-bottom: 20px;
text-align: center;
user-select: none;
}
.subtitle {
font-family: arial;
text-align: center;
margin-left: 30px;
margin-right: 30px;
}
.appWrapper {
width: min-content;
margin: 0 auto;
}
#InputForm {
height: 25px;
display: flex;
justify-content: flex-start;
align-items: center;
gap: 10px;
margin-left: 0px;
margin-bottom: 0px;
}
#InputForm [name="Input"] {
appearance: none;
width: 250px;
height: 100%;
border-radius: 0px;
border-style: solid;
border-width: 1px;
border-color: black;
outline: none;
padding: 0px;
line-height: 100%;
text-indent: 5px;
font-size: 16px;
}
#InputForm [name="type"] {
cursor: pointer;
width: 100px;
height: 110%;
padding: 0px;
line-height: 100%;
text-indent: 5px;
font-size: 14px;
border-width: 1px;
border-radius: 0px;
border-color: gray;
}
#InputForm [name="type"]:focus {
outline: none;
}
#InputForm [type="submit"] {
cursor: pointer;
appearance: none;
height: 110%;
border-style: solid;
border-width: 1px;
border-radius: 0px;
border-color: gray;
background-color: aliceblue;
}
#display {
width: 99%;
height: 100px;
margin-left: 0px;
margin-top: 0px;
resize: none;
border-width: 1px;
border-radius: 0px;
border-color: gray;
font-family: monospace;
font-size: 20px;
text-indent: 5px;
}
#display:focus {
outline: none;
}