-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (101 loc) · 2.08 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.a{
width: 200px;
height: 100px;
}
*{
font-family: 'Courier New', Courier, monospace;
}
html{
min-height: 100%;
}
body{
min-height: 100%;
background-color: #2d3436;
background-image: linear-gradient(315deg, #2DC1E4 0%, #E8ECC7 74%);
text-align: center;
}
.slider{
-webkit-appearance: none;
width: 70%;
height: 10px;
background: #2DC1E4;
border-radius: 15px;
opacity: 1;
-webkit-transition: .2s;
transition: opacity .2s;
margin-left: 40px;
margin-top: 25px;
margin-bottom: 20px;
}
.slider:hover{
opacity: 0.5;
}
.slider::-webkit-slider-thumb{
-webkit-appearance: none;
width: 15px;
height: 15px;
background: #000000;
border-radius: 50%;
cursor: pointer;
}
.action-btn{
background-color: #000;
border: 0;
color: white;
font-size: 15px;
cursor: pointer;
padding: 10px;
margin: 10px 20px;
border-radius: 15px;
opacity: 1;
transition: opacity .2s;
}
.action-btn:hover{
opacity: 0.5;
}
.wrapper{
display: flex;
background-color: rgb(253, 253, 252);
flex-direction: column;
width: 30%;
margin-top: 10%;
margin-left: 35%;
border-radius: 15px;
font-family: fantasy;
padding-bottom: 1%;
}
.slider_main{
display: flex;
flex-direction: row;
}
output{
margin-top: 20px;
margin-left: 10px;
}
.wrapper_main
{
display: flex;
background-color: rgb(253, 253, 252);
flex-direction: row;
width: 22%;
margin-top: 5%;
margin-left: 38%;
border-radius: 15px;
font-family: Georgia, serif;
padding-left: 45px;
}
.clipboard{
margin-left: auto;
margin-right: 2%;
cursor: pointer;
border: 0;
background-color: white;
color:black;
border-radius: 15px;
font-size: 23px;
opacity: 1;
transition: opacity .2s;
}
.clipboard:hover{
opacity: 0.5;
}