-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (48 loc) · 816 Bytes
/
styles.css
File metadata and controls
49 lines (48 loc) · 816 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
49
*{
background-color: rgb(167, 23, 23);
height: 100%;
}
.container{
margin: auto;
height:300px;
width:500px;
background-color: white;
display: grid;
grid-template-columns: 100px 1fr;
grid-template-rows: 75px 75px 75px 75px;
grid-template-areas:
". bill"
". tipPercent"
". heads"
". sum"
" button button";
border-radius: 5 px;
}
.bill{
grid-area: bill;
height: 25 px;
width: 250 px;
}
.tipPercent{
grid-area: tipPercent;
height: 25 px;
width: 250 px;
}
.heads{
grid-area: heads;
height: 25 px;
width: 250 px;
}
.Sum{
grid-area: sum;
height: 25 px;
width: 250 px;
}
.Submit{
grid-area: button;
height:75 px;
width:auto;
background-color: red;
color:white;
border-radius: 3px;
}