react-css-library
Version:
## Library Overview Developed by Marco Duarte and David Artavia, this library leverages React, CSS, and TypeScript to provide a comprehensive set of design components.
49 lines (43 loc) • 1.2 kB
CSS
@font-face {
font-family: 'Poppins';
src: url('./assets//fonts/Poppins/Poppins-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Poppins-Bold';
src: url('./assets//fonts/Poppins/Poppins-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Poppins-Italic';
src: url('./assets//fonts/Poppins/Poppins-Italic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Poppins-SemiBold';
src: url('./assets//fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Poppins-Medium';
src: url('./assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
.button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.button:hover {
background-color: #0056b3;
}