You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
786 B
CSS
49 lines
786 B
CSS
|
5 years ago
|
p { color: blueviolet; font-size:16px;}
|
||
|
|
|
||
|
|
#largeGreen { color:green; font-size:50px;}
|
||
|
|
|
||
|
|
.info {color: blue;}
|
||
|
|
|
||
|
|
/*
|
||
|
|
.button {
|
||
|
|
background-color: red;
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
.button {
|
||
|
|
background-color: #4CAF50;
|
||
|
|
border: none;
|
||
|
|
color: white;
|
||
|
|
padding: 16px 32px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
display: inline-block;
|
||
|
|
font-size: 16px;
|
||
|
|
margin: 4px 2px;
|
||
|
|
transition-duration: 0.4s;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button1 {
|
||
|
|
background-color: white;
|
||
|
|
color: black;
|
||
|
|
border: 2px solid #4CAF50;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button1:hover {
|
||
|
|
background-color: #4CAF50;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button2 {
|
||
|
|
background-color: white;
|
||
|
|
color: black;
|
||
|
|
border: 2px solid #008CBA;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button2:hover {
|
||
|
|
background-color: #008CBA;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|