-
Notifications
You must be signed in to change notification settings - Fork 1
/
viz.css
85 lines (73 loc) · 1.49 KB
/
viz.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
/** Algoviz container */
body{
align-items: center;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.pp-algoviz-dashboard{
font-family: sans-serif;
display: grid;
grid-gap: 50px;
justify-items: center;
}
/** Navbar */
.pp-viz-navabar{
display: grid;
grid-template-columns: 1fr max-content;
justify-content: center;
width: 90%;
}
.pp-viz-navabar .pp-form{
display: grid;
grid-auto-flow: column;
}
.pp-viz-navabar .pp-form-row{
align-items: center;
}
/** Forms */
.pp-form{
display: grid;
grid-gap: 20px;
justify-self: center;
}
.pp-form-row-label{
width: 150px;
display: inline-flex;
}
.pp-form-row input,
.pp-form-row button{
padding: .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
background-clip: padding-box;
border: 1px solid #ced4da;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.pp-form-row button{
color: #ffffff;
background-color: rgb(77, 129, 240);
cursor: pointer;
}
.pp-form-row input{
color: #212529;
background-color: #fff;
}
.pp-form-row input::placeholder{
opacity: 0.5;
}
@media screen and (max-width:700px) {
.pp-viz-navabar{
grid-template-columns: unset;
text-align: center;
}
}
@media screen and (max-width:480px) {
.pp-viz-navabar .pp-form{
grid-auto-flow: row;
}
}