-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
62 lines (55 loc) · 1.22 KB
/
index.css
File metadata and controls
62 lines (55 loc) · 1.22 KB
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
60
61
62
*{
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: aquamarine;
}
.main_div{
width: 100%;
height: 100vh;
background-color: rgb(80, 176, 232);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.center_div{
width: 25%;
height: 60vh;
background-color: aliceblue;
box-shadow: 5px 5px 5px -5px black;
border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1{
color: white;
background-color: rgb(59, 58, 58);
font-size: 50px;
padding: 6px 0 2px 0 ;
margin-bottom: 10px;
width: 100%;
box-shadow: 5px 5px 5px -5px black;
}
button{
min-height: 40px;
border-radius: 5%;
background-color: transparent;
background-color: rgb(73, 70, 70);
color: white;
padding: 0 15px;
margin-top: 30px;
box-shadow: 5px 5px 5px -5px black;
}
button:hover{
background-color: rgb(83, 83, 228);
}
.btn_div{
width: 100%;
/* height: 100%; */
display: flex;
justify-content: space-around;
align-items: center;
}