forked from Return-Ready-PT-Mon-Wed/Temp-Converter-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2021.css
More file actions
46 lines (45 loc) · 887 Bytes
/
2021.css
File metadata and controls
46 lines (45 loc) · 887 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
* {
font-family: sans-serif;
}
.grid-container {
display: grid;
grid-template-rows: repeat(3, 1fr);
}
.grid-item {
background-color: white;
padding: 20px;
font-size: 30px;
text-align: center;
border: 0 solid black;
}
input[type=number] {
width: 200px;
height: 60px;
text-align: center;
box-sizing: border-box;
border: 2px solid black;
border-radius: 1px;
font-size: 25px;
position: relative;
right: 140px;
}
button {
border-radius: 1px;
background-color: rgb(228, 248, 255);
font-size: 25px;
cursor: pointer;
width: 150px;
height: 60px;
position: relative;
left: 10px;
}
.button2 {
border-radius: 1px;
background-color: rgb(228, 248, 255);
font-size: 25px;
cursor: pointer;
width: 150px;
height: 60px;
position: relative;
margin-right : 300px;
}