-
Notifications
You must be signed in to change notification settings - Fork 214
/
style.css
125 lines (101 loc) · 1.71 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
box-sizing: border-box;
}
body {
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
margin: 2em;
margin: auto;
text-align: center;
background: whitesmoke;
}
#quote-body{
margin: 0.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
font-family: 'Permanent Marker', cursive;
font-size: 32px;
}
#quote-body:before {
color: skyblue;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
#quote-speaker{
font-family: 'Pacifico', cursive;
font-size: 24px;
padding-bottom: 20px;
color : #242424;
}
h1,
.h1 {
color: rgb(3, 56, 56);
}
.h1 a {
color: #102E87;
text-decoration: none
}
.h1 a:visited {
color: #102E87;
text-decoration: none
}
.bold {
font-weight: bold;
}
p {
max-width: 600px;
}
form,
.form {
margin-bottom: 10px;
padding: 15px;
background-color: #1337a5;
border: 1px solid #d6d6d6;
box-shadow: 3px 3px 0px #bababa;
display: inline-block;
width: 98%;
max-width: 380px;
}
.main {
margin-bottom: 25px;
padding: 0px 10px 5px 10px;
margin: 8px auto 8px;
border: 2px solid skyblue;
box-shadow: 5px 6px 0px skyblue;
width: 95%;
max-width: 600px;
}
input {
display: block;
margin-bottom: 10px;
padding: 5px;
width: 100%;
border: 1px solid lightgrey;
border-radius: 3px;
font-size: 16px;
}
button {
font-size: 20px;
border-radius: 5px;
color: #0e2877;
background-color: lightseagreen;
border: 0px solid grey;
cursor: pointer;
}
button:hover {
background-color: cyan;
}
button:active {
box-shadow: none;
}
li {
margin-bottom: 5px;
}
footer {
color: #0e2877;
}
small, .small {
color:blue;
}