-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (99 loc) · 1.45 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
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
107
108
109
110
111
112
113
114
115
116
/*Under font size 14 the browser auto-adjusts*/
* {
font-family: "Courier New", monospace;
-webkit-text-size-adjust: none;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
}
.break {
clear: both;
}
#mainContent {
height: 100%;
padding: 0;
margin: 0;
}
.box {
height: 100%;
width: 43%;
margin: 0;
padding: 10px;
box-sizing: border-box;
float: left;
resize: none;
}
#remove {
height: 5%;
width: 100%;
background-color: #E0EAF1;
position: absolute;
bottom: 0;
left: 0;
}
#control_container {
width: 14%;
height: 100%;
float: right;
background-color: #F4F7F8;
position: relative;
}
#control_settings {
height: 10%;
margin: 20px;
font-size: 14px;
}
input[type=radio] {
width: 18px;
height: 18px;
vertical-align: bottom;
}
#copy_to_clipboard {
font-size: 14px;
}
#clipboard {
margin: 170px 5px 0 10px;
background-color: red;
width: 16px;
height: 16px;
vertical-align: bottom;
}
#duplicates_status_container {
height: 65%;
margin: 0;
padding: 20px 20px 0 20px;
}
.duplicates_status {
resize: none;
padding: 10px;
border-radius: 2px;
box-sizing: border-box;
}
#summary {
height: 20%;
width: 100%;
}
#removed_urls {
height: 80%;
width: 100%;
}
h4 {
margin: 10px 0 5px 0;
float: left;
}
#info {
float: right;
height: 28px;
width: 28px;
}
#warning_message {
background-color: #FFC000;
position: absolute;
right: 50px;
padding: 10px 25px;
border-radius: 5px;
opacity: 1;
font-size: 14px;
}