-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (111 loc) · 2.34 KB
/
styles.css
File metadata and controls
117 lines (111 loc) · 2.34 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html{
height: 100%;
}
body{
background-color: white;
background: linear-gradient(rgb(136, 13, 130), rgb(179, 36, 143));
font-size: 20px;
color: rgb(233, 233, 233);
}
.titleHeader{
text-align: center;
background-color: rgba(34, 34, 34, 0.904);
color: white;
border: rgb(129, 61, 168) solid 4px;
border-radius: 40px;
padding: 5px 0px;
margin: 10px 0px;
}
.titleHeader h2{
font-size: 60px;
margin-bottom: 5px;
}
.titleHeader h3{
font-size: 30px;
font-style: italic;
margin-top: 5px;
color: rgb(182, 182, 182);
}
.container{
width: 520px;
height: auto;
margin: 30px auto;
padding: 10px;
border-radius: 10px;
background-color: rgb(8, 110, 150);
padding-top: 20px;
border: rgb(78, 212, 230) solid 2px;
}
#instructions{
border: solid 2px rgb(78, 212, 230);
height: 25px;
padding: 5px;
text-align: right;
float: none;
margin: 0 auto;
background-color: rgb(26, 240, 186);
border-radius: 7px;
color: black;
}
#answerOutput{
border: solid 2px rgb(78, 212, 230);
height: 45px;
padding: 5px;
text-align: right;
font-size: 30px;
float: none;
margin-top: 20px;
margin-left: 20px;
background-color: rgb(26, 240, 186);
border-radius: 7px;
color: black;
}
#opOutput{
border: solid 2px rgb(78, 212, 230);
height: 25px;
width: 30px;
padding: 5px;
margin-top: 10px;
margin-left: auto;
text-align: center;
background-color: rgb(26, 240, 186);
border-radius: 7px;
color: black;
}
.inputBoxes{
margin-top: 10px;
margin-bottom: 10px;
}
button{
width: 40px;
height: 40px;
margin: 10px;
border-radius: 32px;
background-color: rgb(26, 204, 159);
color: white;
font-size: 30px;
}
#operators{
margin-left: auto;
margin-right: auto;
width: 255px;
}
button:hover{
background-color: rgb(26, 240, 186);
color: rgb(179, 179, 179);
transition: background-color 2s;
transition: color 2s;
}
#submitB{
width: 100px;
height: 50px;
/* text-align: center; */
margin-left: auto;
margin-right: auto;
padding-right: 10px;
margin-top: 10px;
margin-bottom: 20px;
}
button.submitButton{
width: auto;
}