-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (97 loc) · 1.56 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
* {
padding: 0;
box-sizing: border-box;
font-family: "sans";
}
@font-face {
font-family: "sans";
src: url(font/sans.ttf);
}
body {
padding-top: 150px;
width: 510px;
margin: 0 auto;
background-color: #19172e;
color: white;
}
h3 {
position: absolute;
font-size: 2rem;
text-align: center;
left: 0;
right: 0;
top: 0;
font-family: 'Rampart One', cursive;
color: cornflowerblue;
}
textarea {
width: 100%;
height: 300px;
padding: 10px;
border: 1px solid #d9d9d9;
border-radius: 5px;
outline: none;
font-size: 1rem;
line-height: 1.5rem;
margin: -59px 0px;
}
textarea:hover {
border-color: #c0c0c0;
}
textarea:focus {
border-color: #4d90fe;
}
.output.row {
padding: 80px;
font-size: 1.3rem;
}
.output.row div {
text-align: center;
}
footer {
position: absolute;
text-align: center;
font-size: 1rem;
left: 0;
right: 0;
bottom: 0;
margin-bottom: 0;
padding: 5px;
line-height: 3vh;
}
footer a:visited {
color: inherit;
}
.mass{
margin: -133px -65px;
float: right;
/* padding: -4px 3px; */
font-size: 22px;
font-family: 'Rampart One', cursive;
}
@media screen and (max-width: 668px) {
h3 {
position: absolute;
font-size: 22px;
text-align: center;
padding: 2px 2xp;
padding: -13px 28px;
margin: 40px;
}
textarea {
width: 92%;
height: 300px;
font-size: 30px;
padding: 2px 2px;
margin: -50px 19px
}
.output.row {
font-size: 31px;
}
.mass{
font-size: 18px;
text-align: center;
justify-content: center;
margin: -41px 184px;
}
}