A web application allowing people to create an account, configure a profile, and share a list of URLs on that profile.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

148 lines
2.4 KiB

button.dtp-link-button,
a.dtp-link-button {
display: inline-block;
padding: 6px;
line-height: 18px;
font-size: 14px;
text-transform: uppercase;
text-decoration: none;
text-align: center;
background: none;
outline: none;
border: solid 2px @global-primary-background;
color: @global-color;
transition: background-color 0.2s, color 0.2s;
&:hover {
background-color: @global-primary-background;
color: @global-inverse-color;
text-decoration: none;
}
}
.share-button {
background: #00d178;
color: white;
font-weight: bold;
&:hover {
color: white;
}
}
button.dtp-payment-method {
background: none;
border: none;
outline: none;
cursor: pointer;
color: #e8e8e8;
font-size: 1.25em;
img {
height: auto;
}
}
button.dtp-payment-amount {
display: block;
width: 100%;
margin: 0;
padding: 15px 0;
text-align: center;
font-size: 1.5em;
font-weight: bold;
cursor: pointer;
background: none;
outline: none;
color: #e8e8e8;
border: solid 3px #10b0e0;
border-radius: 8px;
transition: background-color 0.2s;
&:hover {
background: #10b0e0;
}
}
button.uk-button.dtp-send-button {
padding-left: 12px;
padding-right: 12px;
background: #2a2a2a;
color: #c8c8c8;
}
button.uk-button.dtp-button-subscribe {
background-color: rgb(75, 75, 75);
color: #c8c8c8;
&[data-is-subscribed="true"] {
background-color: rgb(92, 31, 31);
&:hover {
background-color:rgb(145, 45, 45);
}
}
}
a.uk-button.dtp-button-default,
button.uk-button.dtp-button-default {
background: none;
outline: none;
border: solid 2px rgb(75, 75, 75);
color: #c8c8c8;
transition: background-color 0.2s;
&:hover {
background-color: rgb(75, 75, 75);
}
}
a.uk-button.dtp-button-primary,
button.uk-button.dtp-button-primary {
background: none;
outline: none;
border: solid 2px #1e87f0;
color: #c8c8c8;
transition: background-color 0.2s;
&:hover {
background-color: #1e87f0;
}
}
a.uk-button.dtp-button-secondary,
button.uk-button.dtp-button-secondary {
background: none;
outline: none;
border: solid 2px rgb(75, 75, 75);
color: #c8c8c8;
&:hover {
background-color: rgb(75, 75, 75);
}
}
a.uk-button.dtp-button-danger,
button.uk-button.dtp-button-danger {
background: none;
outline: none;
border: solid 2px rgb(255, 0, 0);
color: #c8c8c8;
&:hover {
background-color: rgb(255, 0, 0);
}
}