-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (72 loc) · 1.3 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #f6f6f9;
width: 100%;
height: 100%;
overflow-x: hidden;
}
#header{
width: 100%;
background: #000;
padding: 1rem 2rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
color: white;
font-size: 1.2rem;
text-transform: uppercase;
}
header input, .button{
font-size: 1.2rem;
padding: 10px 20px;
}
.node circle {
fill: #fff;
stroke: black;
stroke-width: 3px;
}
.node text {
font: 16px sans-serif;
text-anchor: middle; /* Center-align text */
dominant-baseline: middle; /* Center-align text vertically */
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
button.activeBtn, button:hover{
background: black;
color: white;
border-radius: 5px;
}
.container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: .5rem;
}
.container h2{
border: 1px solid black;
padding: .5rem 1rem;
margin-bottom: 1rem;
}
#inputArray{
display: flex;
align-items: center;
justify-content: center;
margin-bottom: .5rem;
}
#inputArray div{
border: 1px solid black;
font-size: 1rem;
padding: .5rem;
}