This repository was archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.36 KB
/
style.css
File metadata and controls
82 lines (70 loc) · 1.36 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
@import url(http://fonts.googleapis.com/css?family=Lato);
/*
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Roboto);
*/
html {
height: 100%;
}
body {
font-family: Lato, Arial, Verdana, sans-serif;
background-color: #b8f0b8;
margin: 5em;
}
p, span, h2 {
color: black;
}
div#list {
position: fixed;
overflow: scroll;
color: black;
border: 0.5em solid black;
width: inherit;
height: 30em;
top: 50%;
margin-top: -15em;
word-wrap: break-word;
padding: 0.5em;
}
div#footer {
display: none;
position: fixed;
background: white;
background: -webkit-radial-gradient(white 40%, #b8f0b8 70%);
background: -o-radial-gradient(white 40%, #b8f0b8 70%);
background: -moz-radial-gradient(white 40%, #b8f0b8 70%);
background: radial-gradient(white 40%, #b8f0b8 70%);
text-align: center;
width: 90%;
height: 5em;
z-index: 100;
left: 5%;
bottom: 0em;
}
hr {
border: 0;
height: 0.2em;
background: #333;
background-image: linear-gradient(to right, #b8f0b8, #008000, #b8f0b8);
}
p#copyright {
margin-top: 1.9em;
}
.column {
width: 26.5%;
float: left;
}
div.right, div.middle {
margin-left: 10%;
}
textarea, #input {
width: 100%;
margin: 0;
padding: 0;
font-family: Lato, Arial, Verdana, sans-serif;
font-size: 1.2em;
color: gray;
}
button, textarea {
font-family: Lato, Arial, Verdana, sans-serif;
}