-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (43 loc) · 778 Bytes
/
styles.css
File metadata and controls
49 lines (43 loc) · 778 Bytes
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
table{
width: 310px;
margin: 50px auto;
background: #663399;
border: none;
border-radius: 10px;
padding: 0 20px 20px;
}
.heading{
color: white;
font-size: 130%;
text-align: center;
}
#input, #answer{
width: 269px;
height: 50px;
font-size: 210%;
text-align: right;
border: none;
}
#input{
border-radius: 5px 5px 0px 0px;
box-shadow: 2px 2px 2px black;
color: #1e1e1e;
}
#answer{
border-radius: 0px 0px 5px 5px;
box-shadow: 2px 2px 2px black;
}
input[type=button]{
height: 60px;
width: 60px;
font-size: 130%;
color: blue;
background: white;
margin: 1px;
border-radius:8px;
border:none;
}
input[type=button]:hover{
background: #cbcbcb;
cursor: pointer;
}