-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (115 loc) · 2.29 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
body {
background-color: rgb(24, 24, 24);
color: white;
}
header {
margin: 20px 0;
}
.flag {
display: inline-block;
margin: 10px;
position: relative;
width: 70px;
height: 40px;
}
.en,
.pl {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
.en {
background-image: url("./img/en.svg");
}
.pl {
background-image: url("./img/pl.svg");
}
.input-box {
height: 200px;
width: 100%;
padding: 15px;
margin-bottom: 30px;
background-color: rgb(50, 50, 50);
color: white;
}
label {
margin-top: 25px;
}
textarea, textarea:focus {
background-color: #888;
border: none;
outline: none;
width: 90%;
padding: 5px;
height: 165px;
resize: none;
}
textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
color: rgb(200, 200, 200);
}
textarea:-moz-placeholder, input:-moz-placeholder { /* Firefox 18- */
color: rgb(200, 200, 200);
}
textarea::-moz-placeholder, input::-moz-placeholder { /* Firefox 19+ */
color: rgb(200, 200, 200);
}
textarea:-ms-input-placeholder, input:-ms-input-placeholder {
color: rgb(200, 200, 200);
}
textarea::placeholder, input::placeholder {
color: rgb(200, 200, 200);
}
.read-code {
background-color: #ccc;
border-radius: 500px;
padding: 8px 30px;
color: red;
font-family: monospace;
font-size: 16px;
letter-spacing: 1px;
}
input[type="number"], input[type="number"]:focus {
background-color: #888;
border: none;
outline: none;
width: 120px;
height: 35px;
padding-left: 15px;
}
button, button:focus {
margin-top: 30px;
margin-bottom: 5px;
width: 100%;
height: 50px;
border: none;
border-radius: 15px;
outline: none;
background-color: rgb(33, 150, 243);
box-shadow: 0 6px 0 rgb(21, 92, 150);
transition: .2s ease-out;
}
button:hover {
background-color: rgb(70, 165, 243);
/* box-shadow: 0 6px 0 rgb(21, 92, 150); */
}
button:active {
margin-top: 35px;
margin-bottom: 0;
box-shadow: 0 2px 0 rgb(90, 90, 90);
transition: .1s ease-out;
}
button[type="submit"] {
font-size: 18px;
}
#cipher-state {
padding-top: 30px;
}
.my-alert {
width: 90%;
margin: 10px auto 0 auto;
z-index: 100;
}
.wrong {
box-shadow: 0 0 5px red;
}