-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
41 lines (39 loc) · 861 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
*,
*:before,
*:after{ /*pseudo element to insert content from CSS without HTML */
box-sizing: border-box;
}
/*layout*/
body {
font family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
margin-right: auto;
margin-left: auto;
width: 80%; /*of the screen?*/
background-color: #fac552;
}
img{
height: auto;
max-width: 100%;
}
/*button styles*/
button{
color: fff;
text-transform: uppercase;
background: #60a3bc;
padding: 10px;
border-radius: 50px; /*round button instead of square*/
display: inline-block;
border: none;
}
blockquote{
border-left: 0.25em solid #e5e5e5;
font-style: italic;
margin: 0 0 1.5625em;
padding-left: 1em;
padding-right: 1em;
quotes: none;
}
blockquote:before,
blockquote:after{
content: '';
}