-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
99 lines (95 loc) · 1.96 KB
/
main.css
File metadata and controls
99 lines (95 loc) · 1.96 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 {
margin: 50px auto;
width: 90%;
background-image: url("natural-paper.png");
background-size: 400px 400px;
background-repeat: repeat;
background-position: 100% 100%;
/*background-color: #f1e9d2;*/
font-family:'Montserrat', 'Arial', 'Sans-Serif';
}
nav ul, footer ul {
padding: 0px;
list-style: none;
font-weight: bold;
font-size: 1.5em;
color: #A9A9A9;
}
nav ul li, footer ul li {
display: inline;
margin-right: 20px;
font-size: 1.5em;
color: #A9A9A9;
}
a {
text-decoration: none;
color: #A9A9A9;
}
a:hover {
/*text-decoration: underline;*/
color: #4B0082;
}
h1 {
font-family: 'Lora', sans-serif;
font-size: 8vw;
line-height: 1em;
margin-bottom: 30px;
letter-spacing: 3px;
margin-top: 25px;
color: #000000;
opacity: .75;
}
p {
font-size: 1.5em;
line-height: 1.4em;
font-family:'Montserrat', 'Arial', 'Sans-Serif';
color: #000000;
}
/*footer {
border-top: 1px solid #13F6FF;
font-size: .8em;
}*/
ul.posts {
margin: 20px auto 40px;
font-size: 1.5em;
color: #4B0082;
}
ul.posts li {
list-style: none;
color: #4B0082;
font-size: 1.5em;
}
input[type="text"], textarea {
font: inherit;
display: block;
border-radius: 4px;
margin-bottom: 30px;
border: 1px solid rgba(0, 0, 0,.1);
padding: 8px 15px;
width: 100%;
font-family:'Montserrat', 'Arial', 'Sans-Serif';
box-sizing: border-box;
}
input[type="email"], textarea {
font: inherit;
display: block;
border-radius: 4px;
margin-bottom: 30px;
border: 1px solid rgba(0, 0, 0,.1);
padding: 8px 15px;
width: 100%;
font-family:'Montserrat', 'Arial', 'Sans-Serif';
box-sizing: border-box;
}
input[type="submit"] {
width: 100%;
font-size: inherit;
font-weight: 600;
color: rgba(.76);
background-color: rgba(0,0,0,.2);
border-radius: 4px;
padding: 8px 15px;
width: 100%;
border: 1px solid rgba(0,0,0,.1);
cursor: pointer;
}