1234567891011121314151617181920212223242526272829303132333435 |
- .custom-toolbar {
- --background: rgba(255, 255, 255, 0.8);
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 0;
- }
- .custom-title {
- font-size: 17px;
- color: #000000;
- text-align: center;
- margin: 0;
- }
- ion-card-content img {
- border-radius: 100%;
- width: 150px;
- height: 150px;
- margin-left: 75px;
- margin-bottom: 15px;
- }
- ion-card-content ion-button {
- width: 85%;
- margin-left: 22px;
- --background: #bfc7ce;
- --background-hover: #bfc7ce;
- --background-activated: #bfc7ce;
- --background-focused: #bfc7ce;
- --color: black;
- font-weight: bold;
- margin-bottom: 15px;
- }
|