-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (102 loc) · 1.64 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
body {
margin: 0px;
}
h1 {
margin-block-start: 0px;
margin-block-end: 0px;
text-align: center;
font-size: 100px;
padding: 1%;
}
h2 {
font-size: 30px;
}
#encryptorMain {
margin-left: 20%;
margin-right: 20%;
margin-top: 3%;
}
#shift, #word {
height: 20px;
width: 100px;
text-align: right;
font-size: 15px;
position: relative;
bottom: 6.5px;
}
#word {
font-size: 20px;
}
textarea {
width: 100%;
font-size: 20px;
}
main button {
position: relative;
top: 90px;
width: 20%;
left: 5%;
margin: 5%;
padding: 5%;
text-align: center;
font-size: 25px;
}
header button {
float: right;
position: absolute;
top: 14px;
width: 20%;
right: 3%;
padding: 3%;
font-size: 25px;
}
header {
background-color: dodgerblue;
}
@media (min-width: 1025px) {
main button {
float: left;
}
}
@media (max-width: 1024px) {
main button {
background-color: auto;
}
}
@media (max-width: 980px) {
h1 {
padding: 5%;
}
h2 {
font-size: 47px;
}
main button{
top: 95px;
width: 80%;
height: 200px;
left: 5%;
font-size: 50px;
}
header button {
font-size: 50px;
width: 30%;
height: 120px;
top: 49px;
right: 7%;
}
#encryptorMain {
margin-left: 5%;
margin-right: 5%;
margin-top: 3%;
}
textarea {
width: 100%;
height: 8em;
font-size: 35px;
}
#shift, #word {
height: 25px;
bottom: 10px;
font-size: 35px;
}
}