-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (105 loc) · 1.83 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
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
body{
width:100%;
height:100%;
margin:0;
padding:0;
background-color: #F3F5FC;
color: #0A3871;
font-family: 'Inter', sans-serif;
font-weight: 800;
}
#logo{
margin:1.8vmax;
}
.outputtitulo{
font-weight: bold;
}
.container{
display: flex;
flex-direction: row;
align-self: center;
flex-wrap: wrap;
}
.inputs{
margin: 2%;
padding:2%;
border-radius: 1.8vmax;
display: flex;
align-content: center;
flex-direction:column;
width: 50vmax;
height: 25vmax;
}
.output{
align-items: center;
text-align: center;
margin: 2%;
padding:2%;
border-radius: 2vmax;
display: flex;
flex-direction: column;
flex-shrink: 2;
flex-basis: 25vmax;
flex-grow: 1;
background-color:white;
align-self: center;
max-width: 40vmax;
}
textarea{
height: 100%;
border:none;
resize: none;
background-color:#F3F5FC;
font-size: 1.5vmax;
color: #0A3871;
font-family: 'Inter', sans-serif;
}
#carinha{
height: 10vmax;
}
.outputbuttons{
display: flex;
flex-direction: row;
justify-content: space-between;
}
button{
border-radius: 1vmax;
padding:1vmax;
width: 80%;
color: #0A3871;
background-color: #D8DFE8;
border-color: #0A3871;
margin: 1vmin;
}
button:hover{
scale: 0.95;
}
#encriptar{
background-color: #0A3871;
color: #ffffff
}
#resultado {
display: none;
width: 100%;
height: 25vmax;
background-color: white;
font-size: 1.3vmax;
color: #0A3871;
font-family: 'Inter', sans-serif;
}
#copiar{
display: none;
justify-content: center;
}
footer{
padding: 1vmax;
margin: 0;
padding-bottom: 0;
}
footer h2{
font-size: 1.2vmax;
}
footer p{
font-size: 1vmax;
}