-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatrix.css
More file actions
96 lines (78 loc) · 1.82 KB
/
matrix.css
File metadata and controls
96 lines (78 loc) · 1.82 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
background-image: url(https://wallpaperaccess.com/full/5816742.jpg);
background-size: cover;
background-repeat: no-repeat;
color: whitesmoke;
font-family: Helvetica, Arial, sans-serif;
}
#nav1{
display: grid;
padding: 10px;
gap: 5px;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
justify-items: center;
>div{
/* margin: auto; */
padding: 5px 10px;
background-color: rgb(142, 161, 224);
color: rgb(52, 24, 11);
cursor: default;
border-radius: 5px;
:hover{
color: azure;
}
}
}
main{
.order{
width: 50px;
font-size: large;
}
#result{
margin: 10px 0px 0px 20px;
display: flex;
align-items: center;
>form{
display: flex;
align-items: center;
td{
padding: 1.5px;
}
input{
width: 30px;
padding: 2px;
}
#operation{
width: 20px;
margin: 0px 25px ;
font-size: large;
text-align: center;
}
#equi{
margin: 0px 20px;
padding: 2px;
font-size: large;
}
}
#resultMatrix{
padding: 2px;
margin-left: 5px;
border: 1px white dotted;
border-collapse: collapse;
td{
padding: 5px;
border: 1px white dashed;
}
}
}
#process{
margin: 20px 0px 0px 20px;
}
}