-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (71 loc) · 1.4 KB
/
style.css
File metadata and controls
72 lines (71 loc) · 1.4 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
.container {
max-width: 1200px;
padding: 50px 15px 0;
margin: 0 auto 100px;
}
.input-message-part textarea {
display: block;
width: 300px;
padding: 20px;
margin: 0 0 10px;
border-radius: 5px;
border: 1px solid #ccc;
outline: none;
}
.input-message-part input {
display: block;
width: 300px;
height: 35px;
padding: 0 20px;
margin: 0 0 20px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 10px;
outline: none;
}
.input-message-part input:focus,
.input-message-part textarea:focus {
border: 1px solid rgb(232, 11, 11);
}
.input-message-part button {
height: 40px;
padding: 0 50px;
margin-right: 10px;
color: #fff;
background-color: #333;
border: none;
cursor: pointer;
border-radius: 5px;
}
.input-message-part button:hover {
background-color: rgb(232, 11, 11);
}
.show-message-part {
margin: 50px 0;
}
.input-message-part .tab-btn {
color: #fff;
background-color: rgb(232, 11, 11);
}
.input-message-part .tab-btn:hover,
.input-message-part .tab-btn.active {
background-color: rgb(137, 12, 12);
}
.tab-body .tab-content {
display: none;
}
.tab-body .tab-content.active {
display: block;
}
.tab-content h2 {
margin: 70px 0 30px;
}
#original_message {
color: rgb(11, 116, 11);
}
#encrypted_message {
color: rgb(232, 11, 11);
}
#decrypted_message {
color: rgb(137, 12, 12);
}