-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (51 loc) · 996 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
text-transform: uppercase;
}
label{
text-transform: capitalize;
font-weight: 600;
}
h1#heading{
text-align: center;
margin-top: 50px;
color: #000;
}
body{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #000;
}
.container{
width: 650px;
height: 300px;
background-color: skyblue;
border-radius: 30px;
}
#content{
margin: 15px auto 0px auto;
width: 80%;
text-align: center;
background-color: blanchedalmond;
box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
padding: 20px;
border-radius: 20px;
}
.content1{
display: inline-block;
}
.content2{
padding: 5px 10px;
margin: 10px;
font-size: 30px;
font-weight: 600;
width: 200px;
text-align: center;
border-radius: 10px;
}