-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
63 lines (56 loc) · 1.11 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
border-radius: 5px;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 450px;
width: 350px;
background-color: #F2F3F8;
border-radius: 5px;
border: 2px solid #355C7D;
margin: 2px;
}
.heading{
color: rgb(0, 97, 187);
font-size: 22px;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
padding-bottom: 35px;
margin-top: 40px;
}
.btncontainer{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
button{
height: 50px;
width: 250px;
margin-bottom: 10px;
background-color: rgb(222, 226, 230);
color: #355C7D;
border: 1px solid #355C7D;
font-weight: 600;
border-radius: 5px;
cursor: pointer;
font-size: 15px;
}
button:hover{
background-color: rgb(0, 97, 187);
color: white;
border: 1px solid white;
transition: 0.2s ease-in-out;
}
.dev{
margin-top: auto;
padding-bottom: 10px;
}