-
Notifications
You must be signed in to change notification settings - Fork 642
/
Copy pathstyle.css
92 lines (83 loc) · 1.5 KB
/
style.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
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
body {
font-family: "Arial", sans-serif;
background: rgb(29,29,124);
background: linear-gradient(90deg, rgba(29,29,124,0.9641106442577031) 30%, rgba(0,23,28,1) 90%);
display: flex;
justify-content: center;
position: relative;
color: #473434;
}
.container {
background-color: #ffffff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 500px;
text-align: center;
position: absolute;
top: 85px;
}
h1 {
margin-bottom: 20px;
font-size: 24px;
color: #0056b3;
}
form {
margin-bottom: 20px;
}
label {
font-size: 16px;
color: #333;
}
input[type="number"] {
width: 60px;
padding: 5px;
margin: 10px 5px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
button {
padding: 10px 15px;
margin-top: 20px;
font-size: 16px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#matrix-form {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
button:hover {
background-color: #0056b3;
}
#matrix-input {
margin-top: 20px;
}
#results {
margin-top: 30px;
background-color: #f9f9f9;
padding: 15px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#results p {
font-size: 16px;
margin: 10px 0;
}
.value{
display: flex;
justify-content: space-between;
flex-direction: column;
}
@media screen and (max-width: 530px) {
.container {
width: 70%;
}
}