-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (57 loc) · 1.14 KB
/
Copy pathstyles.css
File metadata and controls
66 lines (57 loc) · 1.14 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
@import url('https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css');
/* Stilizare CHENAR PRINICIPAL */
.center-content {
display: flex;
justify-content: center;
align-items: flex-start;
height: 10vh;
}
/*Stilizare SEARCH-BAR */
.search-bar {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
/* Stilizare SIDEBAR */
.sidebar {
height: 100vh;
overflow-y: auto;
position: sticky;
top: 0;
}
.sidebar .nav-link {
border-radius: 10px;
margin-bottom: 10px;
}
.sidebar .nav-link:hover {
background-color: #e3e3e3;
}
/* Stilizare FORM INTRODUCERE TOOL-URI*/
.tool-form {
border-radius: 10px;
margin-bottom: 20px;
align-items: center;
}
.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.tool-form-container-adding,
.tool-form-container-deleting {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
#input-number-tool,
#input-name-tool,
#input-name-parameter,
#input-number-parameter,
button[type="submit"] {
display: block;
margin-top: 10px;
}