-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (96 loc) · 1.72 KB
/
style.css
File metadata and controls
96 lines (96 loc) · 1.72 KB
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
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
border: none;
outline: none;
}
body{
height: 100vh;
}
.container{
background-color: #ffffff;
width: 400px;
padding: 50px 30px;
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
border-radius: 10px;
box-shadow: 0 20px 25px rgba(0,0,0,0.25);
}
.container *:not(i){
font-family: "Rubik",sans-serif;
}
.colors{
width: 100%;
display: flex;
justify-content: space-around;
}
input[type="color"]{
-webkit-appearance: none;
background-color: transparent;
width: 100px;
height: 45px;
cursor: pointer;
}
input[type="color"]::-webkit-color-swatch{
border-radius: 20px;
border: none;
}
.buttons{
width: 100%;
display: flex;
justify-content: space-between;
margin: 30px 0;
}
.buttons button{
height: 35px;
width: 35px;
background-color: transparent;
border: 2px solid #d5d5dc;
color: #d5d5dc;
border-radius: 5px;
cursor: pointer;
}
.rotate-icon i{
transform: rotate(45deg);
}
.buttons .active{
border: none;
background-color: #4a6ee0;
color: #ffffff;
}
#submit{
display: block;
background-color: #4a6ee0;
color: #ffffff;
font-size: 16px;
padding: 12px 70px;
border-radius: 25px;
margin: 0 auto 30px auto;
cursor: pointer;
}
.output{
background-color: #f0f2fc;
}
#code{
width: 100%;
resize: none;
color: #30304a;
padding: 10px 20px;
background-color: transparent;
}
#copy{
font-size: 14px;
background-color: #4a6ee0;
color: #ffffff;
position: relative;
left: 85%;
bottom: 10px;
border-radius: 3px;
padding: 5px;
cursor: pointer;
}