-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (75 loc) · 1.55 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
h1 {
font-size: 28px;
}
.input-title, select, .dash, option, .user-input, #operator_selector, #bits_count,.output-title{
font-size: 18px;
}
#input-legend, .output-legend{
font-size: 20px;
}
.output{
font-size: 16px;
}
body{
background-color:rgb(255,255,255);
height: auto;
}
h1{
font-family:Impact;
}
.input-title{
font-family:Arial, Helvetica, sans-serif;
font-weight:bold;
}
#input-legend{
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.input-fieldset{
border: 1px solid rgba(50,50,50,0.1);
border-radius: 13px;
background-color: rgba(210,210,210,0.2);
}
td{
padding-top: 2px;
padding-inline-start: 10px;
}
select{
color:#000000;
font-weight: bold;
background-color: rgba(255,255,255,0.4);
border-radius: 4px;
border: 2px solid white;
}
option{
color:#000000;
font-weight: bold;
background-color: rgba(255,255,255,0.4);
}
.user-input{
font-weight: bold;
background-color: rgba(255,255,255,0.1);
border-style: none;
border: 2px solid white;
outline : none;
border-radius: 4px;
text-align: right;
width: 100%;
}
.output-fieldset{
border:none;
border-radius: 10px;
}
.output-legend{
font-weight: bold;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.output{
text-align: right;
}
.output-val{
font-weight: bold;
}
#output-div{
margin-top: 20px;
border-radius: 10px;
}