-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (89 loc) · 1.5 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
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: grey;
color: bisque;
}
h1 {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
gap: 0.5em;
}
#icon {
animation: iconRotation 6000ms infinite forwards;
}
.container {
display: flex;
gap: 2rem;
flex-direction: column;
align-items: center;
}
#textarea {
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 3rem;
padding: 10px;
}
p {
text-align: center;
font-size: small;
display: inline;
}
.metadata {
text-align: center;
font-size: small;
margin: 1rem;
}
.data-con {
display: flex;
flex-direction: column;
align-items: center;
}
.buttons {
display: flex;
gap: 1rem;
}
.resultText {
display: flex;
flex-direction: column;
gap: 3rem;
}
.btn:hover {
opacity: 0.7;
cursor: pointer;
}
.btn {
font-weight: bold;
font-size: 0.8em;
padding: 0.8em;
border-radius: 15px;
border: none;
background: bisque;
box-shadow: 2px 2px 3px;
align-self: center;
}
#save {
display: none;
}
#preview {
background-color: white;
border: 3px black solid;
}
@keyframes iconRotation {
0 {}
100% {
transform: rotate(360deg);
}
}
@media only screen and (min-width: 1000px) {
.resultText {
flex-direction: row;
gap: 2rem;
justify-content: space-evenly;
margin-bottom: 3rem;
}
}