-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (126 loc) · 1.89 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
*{
margin:0%;
padding:0;
box-sizing: border-box;
}
body{
background: blue;
}
html{
font-family: 'Inter', sans-serif;
}
.wrapper{
margin-top: 1.5rem;
padding: 1.5rem 1.5rem 0 1.5rem;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
}
header h1{
font-weight:900;
font-size: 2rem
}
.content {
padding: 1rem;
background-color: white;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
.text-container{
display: flex;
justify-content: center;
}
textarea{
width: 90%;
height: 15rem;
margin:1rem 0;
box-shadow:1px 2px 8px -1px rgba(0,0,0,0.62);
border: 0;
padding: .5rem;
font-family: inherit;
}
.paste-area{
position: relative
}
textarea::placeholder{
color: #8a8585;
}
.instruction{
color: blue;
position: absolute;
top: 80%;
left:10%;
z-index: 2;
}
.btns{
display:flex;
flex-direction: column;
margin-top: 1.5rem;
margin-left: 2rem
}
.btns input{
padding:1rem 1.5rem;
margin-bottom: 1rem;
background-color: white;
border:none;
box-shadow:1px 2px 4px -1px rgba(0,0,0,0.62);
color: #8a8585;
}
.btns .redact-btn {
background-color: blue;
color:white;
border-radius: .5rem;
}
@media (min-width: 500px){
.details{
bottom:5%;
margin: 0 auto;
}
}
@media (min-width: 700px){
header{
padding: 2.5rem;
}
.wrapper{
margin-top: 2rem;
padding: 4rem 4rem 0 4rem;
}
.text-areas{
display: flex;
justify-content: space-between;
margin-top:2rem
}
textarea{
height: 25rem;
}
.text-container{
width: 100%;
position:relative;
}
.btns{
flex-direction: row;
gap: 1.5rem
}
.btns .redact-btn{
width: 10rem;
font-weight:600;
}
.instruction{
top:85%
}
}
.details{
display: flex;
flex-wrap: wrap;
position:absolute;
bottom:10%;
width:60%;
margin: 0 auto;
border:1px solid red
}
.details span{
width: 45%;
margin-bottom: .3rem;
}