-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
117 lines (102 loc) · 1.99 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
@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
* {
--bg-color: #eef0f4;
--color: #333;
--togglebg: #333;
--roundcolor: #eef0f4;
--toggleslider: #111;
--togglesliderColor: #111;
--filter1: drop-shadow(-8px -8px 12px #ffffff)
drop-shadow(8px 8px 12px #c3c5c8);
--filter2: drop-shadow(-4px -4px 6px #ffffff) drop-shadow(4px 4px 6px #c3c5c8);
--filter3: drop-shadow(-2px -2px 3px #ffffff) drop-shadow(2px 2px 3px #c3c5c8);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--color);
font-family: "Muli", sans-serif;
}
p {
margin: 5px 0;
}
h2 {
margin: 10px 0 20px;
text-align: center;
}
input[type="checkbox"] {
margin-right: 0;
}
.container {
padding: 20px;
width: 350px;
max-width: 100%;
background: var(--bg-color);
border: 12px solid var(--bg-color);
filter: var(--filter1);
margin: auto;
}
.result-container {
background-color: var(--bg-color);
border: 12px solid var(--bg-color);
filter: var(--filter2);
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
font-size: 18px;
letter-spacing: 1px;
height: 60px;
width: 100%;
margin-bottom: 35px;
}
textarea {
background: none;
border: none;
color: var(--color);
font-size: 20px;
margin-top: auto;
outline: none;
resize: none;
}
.result-container .btn {
font-size: 20px;
position: absolute;
top: 5px;
right: 5px;
height: 40px;
width: 40px;
}
.buttons {
display: flex;
}
.btn {
width: 50%;
border: none;
color: var(--color);
cursor: pointer;
font-size: 16px;
padding: 8px 12px;
margin: 14px 5px 7px 5px;
background-color: var(--bg-color);
filter: var(--filter2);
}
.btn:hover {
filter: var(--filter3);
transition: 0.3s ease-in-out;
}
.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
}
@media screen and (max-width: 400px) {
.result-container {
font-size: 14px;
}
}