-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 1.01 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
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,700;0,800;1,600&family=Roboto:wght@300;400;700&family=Rubik+Doodle+Shadow&display=swap');
*{
margin: 0;
padding: 0;
border: 0;
}
body{
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(165,17,244,1) 0%, rgba(224,130,255,1) 85%, rgba(205,134,228,1) 99%, rgba(250,211,255,1) 100%);
font-family: 'Poppins','sans-serif';
}
.container{
background-color: aliceblue;
height: 20rem;
width: 40rem;
margin-left: 29rem;
margin-top: 10rem;
opacity: 60%;
border-radius: 3%;
}
h1{
text-align: center;
margin-top: 3rem;
}
.flex{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.quoteBox{
height: 15rem;
width: 25rem;
padding: 0;
font-size: larger;
font-weight: bold;
}
button{
background-color: white;
width: 15rem;
opacity: 1;
font-size: larger;
}