-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (47 loc) · 914 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
42
43
44
45
46
47
48
49
50
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
* {
box-sizing: border-box;
overflow-x: hidden;
}
body {
background-color: rgb(10, 9, 10);
font-family: 'Poppins', sans-serif;
display: flex;
flex-wrap: wrap;
text-align: center;
align-items: center;
justify-content: center;
}
#new-content{
align-items: center;
justify-content:center;
margin: 4rem;
}
.btn {
background-color: rgb(247, 245, 252);
border-radius: 6px;
border: none;
color: rgb(17, 15, 15);
font-weight: 600;
margin: 1rem;
padding: 1.5rem 2.5rem;
font-size: 1rem;
font-family: inherit;
cursor: pointer;
width: fit-content;
}
.btn:hover {
opacity: 1.5;
color: rgb(88, 89, 90);
}
.btn:focus {
outline: none;
}
@media only screen and (min-width: 300px) and (max-width: 490px) {
#new-content{
margin: 1rem;
}
body{
margin-bottom: 3rem;
}
}