-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (127 loc) · 2.8 KB
/
style.css
File metadata and controls
140 lines (127 loc) · 2.8 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: tahoma;
color: white;
text-transform: capitalize;
}
body{
background: linear-gradient(rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.6)) , url('BG/BG.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 80%;
height: 95vh;
}
.container > div{
height: 50%;
}
hr{
color: green;
}
form{
width: 100%;
height: 100%;
}
.title{
height: 20%;
display: flex;
justify-content: center;
align-items: center;
}.title > h1{
font-family: 'Haettenschweiler';
font-weight: bold;
letter-spacing: 10px;
font-size: 2.6vw;
color: rgb(64, 236, 64);
}
.body{
width: 100%;
height: 80%;
display: flex;
justify-content: space-evenly;
}.body > div{
width: 30%;
}.input_parent,.output_parent{
display: flex;
justify-content: center;
align-items: center;
}div.input_parent{
flex-direction: column;
align-items: center
}
textarea{
width: 85%;
height: 85%;
color: white;
background-color: white;
font-family: 'Courier New';
font-weight: 500;
padding: 8px;
background-color: transparent;
border-style: dashed;
border-color: rgb(64, 236, 64);
}textarea#inputCre , textarea#inputDec{
height: 75%;
}#cleCre , #cleDec{
height: 10%;
width: 85%;
background-color: transparent;
border: 2px dashed rgb(64, 236, 64);
padding: 2px 10px;
color: white;
font-weight: 500;
}
textarea#outputDec , textarea#outputCre{
color: rgb(64, 236, 64);
}textarea:focus{
border-color: black;
}
.traitement > .progress{
height: 70%;
}.traitement > .btn{
height: 30%;
display: flex;
justify-content: center;
align-items: center;
}
input[type="button"]{
cursor: pointer;
padding: 8px 60px;
color: rgb(64, 236, 64);
background-color:transparent;
border: 1px solid rgb(64, 236, 64);
border-radius: 75px;
font-size: 1.2vw;
font-weight: bold;
font-family: 'Courier New';
letter-spacing: 2px;
transition: 0.5s color,0.5s background-color;
}input[type="button"]:hover{
background-color: rgb(64, 236, 64);
color: black;
}
.progress{
display: flex;
align-items: center;
justify-content: space-evenly;
}.progress_bar{
height: 20px;
width: 90%;
border: 1px solid white;
display: flex;
justify-content: start;
align-items: center;
}.progress_bar > span{
height: 20px;
width: 0%;
background-color: rgb(64, 236, 64);
}