-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
51 lines (42 loc) · 1014 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
#container{
height: 300px;
display: flex;
align-items: flex-end;
margin: 100px;
background-color:rgb(245, 179, 226);
border: 3px solid slategrey;
}
#h1{
border: 2px solid black;
font-family: sans-serif;
padding: 2px;
}
body{
display: flex;
align-items: center;
flex-direction: column;
font-family: 'Times New Roman', Times, serif;
background-color: rgb(255, 176, 230);
}
.bar{
width: 20px;
background-color:deepskyblue;
margin: 1px;
border-radius: 10px;
}
.btn{
display: inline-block;
padding: 10px 20px;
background-color: #0078d4;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
background-color: #ff0000;
transform: translateY(-3px);
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}