sneedium/styles.css

50 lines
847 B
CSS
Raw Normal View History

2023-03-02 15:42:38 -06:00
/* styles.css */
2023-03-09 01:04:43 -06:00
/* Add styles here to customize the appearance of your app */
#goBtn {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 1% 1%;
text-align: center;
text-decoration: none;
display: inline-block;
2023-03-09 01:15:50 -06:00
font-size: 1.25rem;
2023-03-09 01:04:43 -06:00
}
#backBtn {
background-color: #f44336; /* Red */
border: none;
color: white;
padding: 1% 1%;
text-align: center;
text-decoration: none;
display: inline-block;
2023-03-09 01:15:50 -06:00
font-size: 1.25rem;
2023-03-09 01:04:43 -06:00
}
#forwardBtn {
background-color: #01315e; /* Blue */
border: none;
color: white;
padding: 1% 1%;
text-align: center;
text-decoration: none;
display: inline-block;
2023-03-09 01:15:50 -06:00
font-size: 1.25rem;
2023-03-09 01:04:43 -06:00
}
#txtUrl {
border: none;
padding: 1% 1%;
text-align: center;
text-decoration: none;
display: inline-block;
2023-03-09 01:15:50 -06:00
font-size: 1.25rem;
}
body {
2023-03-09 01:11:05 -06:00
user-select: none;
2023-03-09 01:04:43 -06:00
}