forked from stargazers/ShortURL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
99 lines (86 loc) · 1.34 KB
/
index.css
File metadata and controls
99 lines (86 loc) · 1.34 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
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
body
{
background-color: black;
margin-top: 30px;
}
/* The whole site will be inside this div */
#div-container
{
width: 500px;
margin-left: auto;
margin-right: auto;
}
/* Div where adding form is placed */
#div-adding_form
{
padding: 20px;
background-color: white;
text-align: center;
}
/* Div where last added items are shown */
#div-last
{
color: black;
margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 20px;
padding-top: 1px;
background-color: #aacccf;
}
#div-last a:link, a:visited
{
color: black;
text-decoration: none;
font-size: 0.9em;
}
#div-last h3
{
margin-bottom: 0px;
}
#div-last a:hover
{
background-color: white;
}
/* Error div what will be shown if there is no permissions
to create file */
#div-error
{
width: 600px;
height: 50px;
background-color: white;
text-align: center;
padding-top: 20px;
margin-left: auto;
margin-right: auto;
}
/* Response div is used to show "Your URL" */
#div-response
{
width: 600px;
height: 50px;
background-color: white;
text-align: center;
padding-top: 20px;
margin-left: auto;
margin-right: auto;
}
#div-response a:link, a:visited
{
text-decoration: none;
color: black;
}
#div-response a:hover
{
text-decoration: underline;
background-color: #888777;
}
#div-gpl
{
margin-top: 30px;
font-size: 0.7em;
}
#div-gpl a:link, a:visited
{
color: red;
}