-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 1.41 KB
/
style.css
File metadata and controls
105 lines (90 loc) · 1.41 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
97
98
99
100
101
102
103
104
105
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
font-family: "Montserrat", sans-serif;
outline: none;
}
i {
pointer-events: none;
}
.background {
height: 100vh;
background: radial-gradient(#ffffff, #b6b6b6);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header {
display: flex;
padding-bottom: 5rem;
font-size: 2.5rem;
text-align: center;
transition: all 0.5s ease;
}
#title {
font-weight: bold;
}
.header:hover {
transform: rotateY(180deg);
}
.header img {
width: 35px;
margin-right: 2rem;
}
form {
display: flex;
flex-direction: column;
font-size: 2rem;
font-weight: 500;
text-align: center;
}
form textarea {
resize: none;
padding: 1rem;
background: #101010;
border: none;
margin: 1rem;
color: white;
font-family: inherit;
font-size: 1.6rem;
border-radius: 1rem;
}
.input-field,
.output-field {
display: flex;
justify-content: center;
align-items: center;
}
.output-field {
transform: translateX(3%);
}
.submit {
margin: 1rem;
transform: translateX(14%);
}
button {
padding: 1rem 1.2rem;
border: none;
border-radius: 1rem;
font-family: inherit;
cursor: pointer;
}
.rev-btn {
background: #101010;
color: #dadada;
font-size: 1.6rem;
font-weight: 600;
}
.clear-btn,
.copy-btn {
background: #d1d1d1;
font-size: 1.6rem;
font-weight: 600;
}