url-minify/frontend/components/Dashboard/createlink.style.js

87 lines
1.4 KiB
JavaScript
Raw Normal View History

import styled from 'styled-components'
2022-02-17 16:05:37 +00:00
export default styled.div`
h2 {
color: #00253a;
font-size: 33px;
2022-02-17 16:05:37 +00:00
}
input {
width: 550px;
padding: 16px;
border-radius: 5px;
background-color: #f2f2f2;
border: none;
2022-02-17 16:05:37 +00:00
}
.frame {
width: 79%;
margin-left: 26%;
padding-top: 60px;
font-family: 'Poppins', sans-serif;
2022-02-17 16:05:37 +00:00
}
.card {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
2022-02-17 16:05:37 +00:00
}
form {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: start;
gap: 20px;
2022-02-17 16:05:37 +00:00
}
button {
width: 49%;
height: 45px;
border-radius: 5px;
background-color: #f2f2f2;
border: none;
font-size: 16px;
cursor: pointer;
2022-02-17 16:05:37 +00:00
}
.btndiv {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
2022-02-17 16:05:37 +00:00
}
.submit {
background-color: #43bfd6;
color: white;
2022-02-17 16:05:37 +00:00
}
textarea {
width: 100%;
height: 150px;
padding: 16px;
box-sizing: border-box;
border: none;
2022-02-17 16:05:37 +00:00
border-radius: 4px;
background-color: #f2f2f2;
2022-02-17 16:05:37 +00:00
font-size: 16px;
resize: none;
}
.textdiv {
width: 100%;
}
2022-02-17 16:05:37 +00:00
.textdiv,
.aliasdiv,
.titlediv,
.hugediv {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: start;
gap: 7px;
}
`