-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (103 loc) · 2 KB
/
style.css
File metadata and controls
114 lines (103 loc) · 2 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
106
107
108
109
110
111
112
113
114
body {
display: flex;
align-items: center;
}
.maincontainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin:auto;
width: 50%;
height: 400px;
border: solid 2px rgb(208,215,222);
border-radius: 15px;
}
p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.type {
font-size: 1.5rem !important;
}
textarea {
height: 10rem;
width: 80%;
border-radius: 0.5rem;
text-align: left;
border:0px;
/* background-color: rgb(246,248,250); */
background-color: rgb(239,243,244);
padding-left: 1rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
resize: none;
overflow:scroll;
}
textarea:focus {
outline: none !important;
border: solid 1px rgb(208,215,222);
box-shadow: 0px 0px 5px;
}
.button {
margin-top: 1rem;
height: 1.3rem;
width:80%;
border-radius: 0.5rem;
border: 0px;
background-color:brown;
color: white;
font-size: 1.2rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-decoration: none;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
}
.button.crpyto {
height: 2rem !important;
}
.middle p {
margin-top:0;
}
.middle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 80%;
height: 80%;
}
textarea::placeholder {
text-align: center;
}
.button:hover {
background-color:rgb(180, 51, 51);
}
.mainbutton {
height: 50%;
margin:1rem 0;
}
/* @media (max-width:900px) {
.button {
width: 300px;
}
textarea {
width: 300px;
}
}
@media (max-width:680px) {
.button {
width: 270px;
}
textarea {
width: 270px;
}
}
@media (max-width:610px) {
.button {
width: 240px;
}
textarea {
width: 240px;
}
} */