-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 818 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins';
}
body {
margin: 2rem 0;
}
h1 {
margin-top: 1.5rem;
text-align: center;
font-size: 1.5rem;
color: red;
}
#btns, #options, #find {
display: flex;
justify-content: center;
align-items: center;
}
button {
padding: 0 0.5rem;
margin: 0.5rem .7rem;
cursor: pointer;
}
input {
margin: 0 .5rem;
padding: .3rem;
width: 45px;
height: 30px;
border-color: #f1f1f1;
outline: none;
margin: .5rem;
}
main {
display: flex;
justify-content: center;
align-content: center;
}
#adjacencyMatrix {
margin-top: 1.5rem;
margin-bottom: 1rem;
}
@media only screen and (max-width: 425px) {
h1 {
font-size: 1.2rem;
}
}