-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (107 loc) · 1.83 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
* {
box-sizing: border-box;
}
img {
width: 100%;
height: 100%;
}
html,
body {
overflow: clip;
scrollbar-color: #000000 #ffffff;
margin: 0;
padding: 0;
font-family: "Comic Sans MS", "Comic Sans", cursive;
}
body{
background-color: black;
}
div {
margin: 10px 0;
}
.content {
width: 70%;
margin: 0 15%;
}
.selectable {
-webkit-touch-callout: all;
-webkit-user-select: all;
-khtml-user-select: all;
-moz-user-select: all;
-ms-user-select: all;
user-select: all;
}
textarea,
input,
output {
width: 100%;
background: white;
font-size: 16px;
width: 100%;
overflow-y: auto;
resize: none;
height: 200px;
border: 10px groove grey;
border-radius: 25px;
}
output {
cursor: pointer;
display: block;
word-break: break-all;
white-space: pre-wrap;
}
::placeholder {
text-align: center;
line-height: 200px;
font-size: 50px;
font-weight: bold;
}
button {
cursor: pointer;
width: 100%;
font-size: 20px;
font-family: "Comic Sans MS", "Comic Sans", cursive;
appearance: none;
border: .2em solid #ffffff;
background-color: black;
padding: .85em 1.5em;
color: #ffffff;
border-radius: 2em;
z-index: 2;
overflow: clip;
position: relative;
transition: 0.4s;
}
button:hover{
color: black;
border-color: grey;
}
button::before {
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 50%;
background-color: white;
z-index: -1;
transition: 0.35s;
width: 0%;
}
button:hover:before {
width: 100%;
left: 0;
}
#circle {
position: absolute;
width: 0;
height: 100%;
background-color: lightpink;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
border-radius: inherit;
z-index: -1;
}