-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsortingcss.css
106 lines (99 loc) · 1.42 KB
/
sortingcss.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*{
box-sizing:border-box;
font-family:calibri;
}
body{
margin:0;
}
.parent{
width:100%;
height:auto;
float:left;
}
.header{
width:100%;
height:70px;
float:left;
background-color:rgb(107,54,114);
}
.name,.size,.algorithm{
width:20%;
height:70px;
float:left;
}
.algorithm{
width:30%;
}
.size{
margin-left:5%;
}
.size label{
margin:0;
line-height:70px;
color:#ffffff;
font-size:1em;
}
.name h1,.size h1{
margin:0;
line-height:70px;
color:#ffffff;
font-size:1em;
text-align:center;
}
.name h1{
font-size:1.5em;
}
.lab{
margin:0;
line-height:70px;
color:#ffffff;
font-size:1em;
text-align:center;}
.algorithm select,.size select{
width:70%;
height:35px;
border-radius:5px;
border:none;
padding:5px;
}
.size select {
width:30%;
height:30px;
}
.sort{
width:10%;
height:70px;
float:left;
}
.sort button{
width:50%;
height:30px;
border:none;
border-radius:5px;
margin-top:20px;
}
/*now data section css starts here to append element according to the need*/
.parent_data{
width:100%;
height:auto;
float:left;
text-align:center;
}
.data{
width:auto;
height:500px;
display:inline-block;
margin:0 auto;
}
.pad{
height:200px;
width:auto;
background-color:#42cbf5;
float:left;
width:20px;
text-align:center;
margin-left:5px;
color:#ffffff;
font-weight:bold;
font-size:.7em;
}