-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
41 lines (41 loc) · 823 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
body {
text-align:center;
align:center;
}
label{
font-weight: bold;
}
h1{
text-align: justify;
}
.button{
background-color: "green";
border:none;
color:white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1,.button2{
background-color: Pink;
color: black;
border: 2px solid DeepPink;
border-radius: 40px 40px 40px 40px;
width: 300px;
height: 40px;
}
.button1:hover{
background-color:lightblue;
color:black;
}
.button2:hover{
background-color:lightgoldenrodyellow;
color:white;
}
.button1{
font-size: x-large;
}