-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (79 loc) · 1.58 KB
/
style.css
File metadata and controls
84 lines (79 loc) · 1.58 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
* {
margin: 0;
padding: 0;
font-family: "Quicksand", sans-serif;
}
html{
font-size: 62.5%;
font-family: Arial, Helvetica, sans-serif;
}
.container{
width: 100%;
height: 100vh;
display: grid;
place-items: center;
background-color: #eee;
justify-content: center;
}
.inner{
width: 60rem;
height: 40rem;
background-color:deepskyblue;
border-radius: 2rem;
box-shadow: 0 1.2rem 3rem 0.5rem rgba(0, 0, 0, 0.2);
padding: 3rem;
text-align: center;
}
.inner >.box{
width: 100%;
height: 40rem;
display: grid;
background-color:aliceblue;
border-radius: 2rem;
box-shadow: 0 1.2rem 3rem 0.5rem rgba(0, 0, 0, 0.2);
}
.box >.text{
margin: 20px;
text-align: center;
font-weight: 500;
font-size: medium;
}
#author{
font-size: small;
margin: 4em 1em;
text-align: right;
}
.box > .button{
display: flex;
align-items:center;
justify-content: center;
background-color:#0c96c4;
border-radius: 0 0 2rem 2rem;
cursor: pointer;
}
#newQuotes{
display: block;
background-color:#0c96c4;
font-size: large;
border:#0c96c4;
cursor: pointer;
}
.number{
display: flex;
justify-content:right;
}
.number > img{
height: 30px;
width: 30px;
cursor: pointer;
}@media only screen and (max-width: 768px) {
.inner{
width: 75%;
}
.inner > .box{
width: auto;
}
.number{
width: auto;
}
}