-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.css
122 lines (112 loc) · 2.37 KB
/
user.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
h1{
margin-top:2500px;
}
.input-subtraction-button {
width: auto;
height: auto;
min-width: 3vh;
min-height: 3vh;
background: url('subtraction.png');
background-size: 100% 100%;
display: inline-block;
vertical-align: middle;
text-align: center;
border: none;
margin:auto;
}
.input-addition-button {
width: auto;
height: auto;
min-width: 3vh;
min-height: 3vh;
background: url('addition.png');
background-size: 100% 100%;
display: inline-block;
vertical-align: middle;
text-align: center;
border: none;
margin:auto;
}
.general-button{
height: 40px;
width : 75px;
text-align: center;
font-size: 18px;
border: 1px solid #ddd;
border-radius: 4px;
display: inine-block;
}
.num-input{
height: 40px;
width : 40px;
text-align: center;
font-size: 26px;
border: 1px solid #ddd;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
}
.input-button{
height: 40px;
width : 100px;
text-align: center;
font-size: 26px;
border: 1px solid #ddd;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
}
#totalAutoScore {
height: 40px;
width : 40px;
background-color: white;
text-align: center;
font-size: 26px;
border: 1px solid #ddd;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
}
.highlighted {
background-color: rgb(135, 135, 135);
color: black; /* Change the text color as needed */
}
.input-submit-button {
width: auto;
height: auto;
min-width: 250px; /* Set a maximum width if needed */
min-height: 100px;
background: url('submitbutton.png');
background-size: 100% 100%;
display: inline-block;
vertical-align: top;
text-align: center;
border: none;
margin: 30px;
}
.clear-button {
width: auto;
height: auto;
min-width: 250px; /* Set a maximum width if needed */
min-height: 100px;
background: url('clear.png');
background-size: 100% 100%;
display: inline-block;
vertical-align: top;
text-align: center;
border: none;
margin: 30px;
}
body {
/* Set your initial background color */
background-color: #edf2f4;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 5vh;
}
.section{
text-align: center;
}