-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
56 lines (49 loc) · 934 Bytes
/
index.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
html, body {
margin: 0px;
padding: 0px;
}
textarea {
resize: none;
}
.doc {
height: 100%;
width: 50%;
padding: 10px;
z-index: 0;
outline: none;
border: 0px;
color: white;
font-family: Helvetica;
font-size: 20px;
}
#doc1{
float: left;
background-color: #34495e;
}
#doc2{
float: right;
background-color: #2c3e50;
}
#compare-btn{
position: absolute;
z-index: 1;
height: 70px;
width: 150px;
bottom: 10px;
right: calc(50% - 75px);
background-color: #2ecc71;
border: 0px;
border-radius: 3px;
cursor: pointer;
-webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.75);
color: white;
font-size: 24px;
}
#compare-btn:not([disabled]):hover {
background-color: #27ae60;
}
::-webkit-scrollbar {
display: none;
}