-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 670 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 670 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
45
46
47
48
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
transition: 1s;
}
h1{
text-align: center;
padding-top: 1rem;
}
.main{
width: 100%;
height: 88vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 30rem;
background-color: #fff;
border-radius: 10px;
padding: 10px;
font-size: 2rem;
text-align: center;
}
button{
font-size: 2rem;
width: 50%;
background-color: black;
color: #fff;
border: none;
border-radius: 5px;
margin-top: 5px;
padding: 6px;
margin-bottom: 5px;
}
h3{
text-align: center;
padding-bottom: 1rem;
}