-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoggle.css
59 lines (59 loc) · 828 Bytes
/
toggle.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
@media only screen and (min-width: 1100px)
{
p
{
font-size: 5rem;
}
}
@media only screen and (min-width: 901px)
{
p
{
font-size: 4rem;
}
}
@media only screen and (max-width: 900px)
{
p
{
font-size: 3rem;
}
}
@media only screen and (max-width: 600px)
{
p
{
font-size: 2rem;
}
}
#main
{
height:100vh;
width:100vw;
display:flex;
justify-content: center;
flex-direction: column;
}
#btn
{
display:flex;
height:2.9rem;
width:9rem;
align-self: center;
border: 2px solid black;
border-radius:1.5rem;
background-color: white;
}
#inner
{
background-color: black;
border-radius: 6rem;
height:2.5rem;
width:30%;
margin-left: -5px;
}
#para
{
font-family: sans-serif;
align-self: center;
}