-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (57 loc) · 907 Bytes
/
Copy pathstyles.css
File metadata and controls
62 lines (57 loc) · 907 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.header{
display: flex;
align-items: center;
flex-direction: column;
background-color:#161D6F;
padding: 45px;
margin-bottom: 5px;
}
p{
color: white;
}
.first{
display: flex;
}
.second{
margin-top: 0px;
}
#result{
background-color: #0B2F9F;
padding: 50px;
margin-bottom: 5px;
}
h1{
color: white;
}
.container
{
display: flex;
justify-content: center;
gap: 50px;
background-color:#98DED9;
padding: 50px;
margin-bottom: 5px;
}
.btn{
border-radius: 12px;
border: 5px solid white;
background-color: gold;
padding: 20px;
}
button{
transition-duration: 0.3s;
}
button:hover{
background-color: red;
color: white;
}
button:active{
background-color: red;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
footer{
background-color: black;
display: flex;
justify-content: center;
}