-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (78 loc) · 1.58 KB
/
style.css
File metadata and controls
92 lines (78 loc) · 1.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
display:flex;
align-items: center;
justify-content: center;
font-family: "poppins","sans serif";
height: 100vh;
}
.container{
margin-top: 5%;
border: 3px solid blue;
border-radius: 30px;
width: 500px;
box-shadow: 0px 0px 5px 5px rgb(208, 205, 205);
background-color:wheat ;
overflow: hidden;
}
.containerB{
display: flex;
flex-direction: column;
justify-content: space-evenly;
font-size: 2rem;
padding: 1.5em;
}
h3{
font-weight:300;
}
h2{
text-align: center;
margin: 10px
}
li{
list-style: none;
padding: 5px;
}
li:hover{
translate: 5px 0px;
transition: ease-in-out 200ms;
font-weight: 600;
}
label{
font-size:1.5rem;
font-weight: 300;
padding: 20px;
}
button{
width: 100%;
height: 60px;
font-size: 2em;
font-weight: 500;
border:none;
background-color: blue;
color: aliceblue;
box-shadow: 0px 10px 10px 10px rgb(44, 43, 43);
}
button:hover{
background-color: rgb(1, 1, 168);
transition: ease-in-out 200ms;
}
button:active{
font-size:2.5em;
color: rgb(247, 229, 229);
transition: ease-in-out 100ms;
}
#btn2{
height: 35px;
font-size: 1em;
box-shadow: none;
width: 100%;
}
#btn2:active{
font-size:1.5em;
}