-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.css
59 lines (57 loc) · 1.09 KB
/
calc.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
body{
align-items: center;
display: flex;
justify-content: baseline;
background-image: url(Vincent_van_Gogh-Almond_blossom-Google_Art_Project.jpg);
}
#title1{
align-items: center;
border-radius: 10px;
margin-bottom: 10px;
text-align:center;
font-size: large;
width: 500px;
color:#fce046;
border: solid black 2px;
}
#title2{
align-items: center;
border-radius: 10px;
margin-bottom: 10px;
text-align:center;
font-size: large;
width: 500px;
color:#ffd900;
border: solid black 2px;
}
#container{
align-items: center;
display: flex;
justify-content: baseline;
}
td{
border: 2px solid;
}
table{
width: 500px;
height: 200px;
}
input[type="button"]{
border-radius: 10px;
background-color: darkslategray;
color: rgb(248, 246, 246);
border-color:#ff44e6 ;
width:100%;
height: 100%;
font-size: 175%;
font-family: 'Times New Roman', Times, serif;
}
input[type="text"]{
border-radius: 10px;
text-align: right;
font-size: large;
background-color:rgba(255, 255, 255, 0.74);
border-color: black ;
width:96%;
height: 80%;
}