-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (94 loc) · 1.67 KB
/
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
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
html {
font-family: sans-serif;
font-size: 19px;
}
.btn {
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
color : #333;
background-image: url("background.png");
background-attachment:fixed;
margin: 0;
line-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Londrina Solid', cursive;
letter-spacing: 0.07em;
}
a {
color:#cc6600;
text-decoration: none;
}
li:first-letter {
text-transform: uppercase;
}
li {
margin-bottom: 0.4em;
}
a:hover {
text-decoration: underline;
text-shadow: white;
}
main {
margin: 100px auto;
width:800px;
max-width:100%;
box-sizing: border-box;
background-color: rgba(255,255,255,0.97);
padding : 0 20px;
overflow: auto;
box-shadow: 8px 6px 19px 1px rgba(0, 0, 0, 0.3);
border-radius : 10px;
}
.btn, .btn:focus {
background-color: #994d00;
padding : 0.7em;
color : white;
box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.7);
position: relative;
display: inline-block;
border-radius : 5px;
font-family: 'Londrina Solid', cursive;
font-weight: 300;
letter-spacing: 2px;
font-size: 1.2em;
}
.btn:hover {
text-decoration: none;
box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
bottom:1px;
}
.btn i {
margin-right: 0.5em;
}
ul.done {
}
p.menu {
margin: 1em 0;
}
p.menu a{
margin: 0 1em 0 0;
}
@media screen and (max-width: 480px) {
html {
font-size: 16px;
}
.btn {
width: 100%;
text-align: center;
}
ul {
padding-left: 20px;
}
main {
padding : 0 10px;
}
p.menu a{
margin: 1em 0 0 0;
}
p.menu a:first-child {
margin: 0 0 0 0;
}
}