-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (65 loc) · 1.24 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
*{
box-sizing: border-box;
color:#fff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #333;
}
a{
text-decoration: none;
}
main{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
button{
font-size: 1rem;
padding: 1rem;
border-radius: .25rem;
background-color: #4136e4;
color:#fff;
border:1px solid #dfdfdf;
}
button:active{
background-color: #32289e;
}
p{
text-align: justify;
/* background-color: red; */
}
.random-quote{
max-width: 500px;
background-color: #444;
padding: 2rem;
margin: 2rem;
border:2px solid #444;
border-radius: 5px;
box-shadow: 0 0 15px 0px #22222288;
}
.author{
float: right;
}
footer{
position: fixed;
bottom: 0;
width: 100vw;
padding: 1rem;
background-color: #000;
display: flex;
align-items: center;
justify-content: center;
}
footer a{
border-bottom: 2px dotted #fff;
}
footer a:hover{
border-bottom: 2px solid #fff;
}