-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvis.css
More file actions
64 lines (56 loc) · 1.37 KB
/
vis.css
File metadata and controls
64 lines (56 loc) · 1.37 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
.navbar {
background-color: #087ce7;
color: #ffffff;
margin: 2px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
body {
background: #FFEFBA; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FFFFFF, #FFEFBA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#input {
margin: 5px;
height: 40px;
width: 50%;
}
#array_input{
text-align: center;
font-size: 30px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
color: firebrick;
}
#random_input {
width: 40%;
font-size: 25px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
color: firebrick;
}
#no_of_swaps{
text-align: center;
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
color: #087ce7;
}
#algo {
height: 50px;
width: 100%;
background-color: green;
color: #ffffff;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
button.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width:90%;
}
i:hover {
color:rgb(151, 142, 142);
}
#about:hover {
text-decoration: underline;
}