-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (41 loc) · 706 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (41 loc) · 706 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
html,body{
width: 100%;
height: 100%;
}
#back{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
transition: all 0.5s ease-in-out;
}
button{
padding: 15px 40px;
border: none;
border-radius: 200px;
cursor: pointer;
letter-spacing: 3px;
font-weight: 500;
margin: 15px ;
}
#light{
background-color: white;
color: black;
}
#dark{
background-color: black;
color: white;
}
}
h1{
font-size: 56px;
letter-spacing: 5px;
}