-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
66 lines (55 loc) · 842 Bytes
/
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
body {
position: relative;
padding: 0;
margin: 0;
/*background: url('image.jpg') 20% center no-repeat;
background-size: cover;*/
}
body:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(9, 130, 10, 0.64);
}
#overlay {
color: white;
width: 100%;
}
#container {
position: relative;
max-width: 600px;
margin: 0 auto;
padding: 30px 0;
}
#overlay a {
color: white;
text-decoration: none;
}
#overlay a:hover {
opacity: .8;
}
#buttons {
margin-top: 10px;
}
h1 {
margin: 0 0 20px 0;
}
button {
background-color: transparent;
color: white;
border: 1px solid white;
border-radius: 3px;
margin: 10px!important;
padding: 5px 10px;
text-align: left;
outline: none;
cursor: pointer;
}
button:hover {
background: #ffc823;
color: #fff;
border: 1px solid #ffc823;
}