-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (82 loc) · 1.47 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #A271F8;
}
.wrapper {
width: 450px;
padding: 20px;
background: #fff;
border-radius: 7px;
}
.wrapper .gradient-box {
width: 100%;
height: 220px;
border-radius: 5px;
background: linear-gradient(to right, #5665E9, #A271F8);
}
.wrapper .row {
display: flex;
margin: 20px 0;
justify-content: space-between;
}
.row :where(.column, button) {
width: calc(100%/2 - 12px);
}
.options p {
font-size: 1.12rem;
}
.options .select-box {
border-radius: 5px;
padding: 10px 15px;
border: 1px solid #aaa;
}
.select-box select {
width: 100%;
border: none;
outline: none;
background: none;
font-size: 1.12rem;
}
.options .colors {
margin-left: 60px;
}
.colors input {
height: 41px;
width: calc(100%/2 - 20px);
}
.colors input:last-child {
margin-left: 6px;
}
.wrapper textarea {
width: 100%;
padding: 10px 15px;
color: #333;
resize: none;
font-size: 1.05rem;
border-radius: 5px;
border: 1px solid #ccc;
}
.buttons button{
padding: 15px 0;
cursor: pointer;
font-size: 1.09rem;
border: none;
outline: none;
border-radius: 5px;
color: #fff;
}
.buttons .refresh{
background: #6c757d;
}
.buttons .copy{
background: #A271F8;
}