-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmatrix.css
More file actions
85 lines (72 loc) · 1.3 KB
/
Copy pathmatrix.css
File metadata and controls
85 lines (72 loc) · 1.3 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
/* CSS styles go here */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(45deg, #5ec293, rgba(51, 144, 195, 0.267));
}
nav {
background-color: #333;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
nav li {
float: left;
}
nav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav li a:hover {
background-color: #111;
}
.matrix-calculator {
max-width: 500px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
text-align: center;
}
.matrix-calculator h2 {
margin-bottom: 10px;
}
.matrix-calculator label {
margin-right: 5px;
}
.matrix-calculator input {
margin-bottom: 10px;
padding: 5px;
width: 50px;
}
.matrix-calculator button {
margin: 5px;
padding: 5px 10px;
border: none;
border-radius: 3px;
background-color: #333;
color: white;
cursor: pointer;
}
.matrix-calculator #matrixInputs {
margin: 10px 0;
}
.matrix-calculator #result {
margin-top: 10px;
}