blob: 18588671d19c7c0459fba3b900ef0193735c5639 (
plain)
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
|
body{
margin-top: 6em;
position: relative;
text-align: center;
}
.content{
width: 600px;
margin: auto;
text-align: left;
}
h1{
text-align: center;
}
form, button, p{
font-size: 12pt;
font-family: sans-serif;
line-height: 150%;
}
form{
overflow: auto;
margin-bottom: 1em;
}
form button{
padding: .5em 1em;
background-color: #aaa;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
#url-value{
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#open-url-button{
display: inline-block;
float: left;
background-color: #ec1e1e;
}
|