-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (110 loc) · 2.32 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
123
124
125
126
127
@charset "utf-8";
body {
color: rgb(255, 255, 255);
margin: 0;
padding: 0;
font-family: 'Fira Sans', sans-serif;
height: 100px;
background: url(https://images.unsplash.com/photo-1611077543693-a0194a16b034?q=80&w=1606&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
h1 {
text-align: center;
color: black;
font-size: 10vh;
font-weight: 100%;
}
h2 {
text-align: center;
color: black;
font-size: 2rem;
font-weight: 100%;
}
form {
background: rgba(255, 255, 255, 0.35);
color: black;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(30px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 5rem;
border-radius: 12%;
display: flex;
flex-direction: column;
justify-content: left;
text-align: left;
margin: auto;
color: #000000;
text-align: center;
}
.calculadora {
text-align: center;
margin-top: 10%;
display: flex;
justify-content: center;
align-items: center;
}
button {
padding: 5%;
font-family: sans-serif;
font-size: 0.8em;
background-color: #3085a7;
border: none;
font-weight: 800;
color: #ffffff;
transition: opacity 0.3s ease;
}
button:hover {
opacity: 0.8;
cursor: pointer;
}
.divBack, .divBack2 {
display: flex;
justify-content: center;
align-items: center;
}
.conteudo, .analise {
font-size: 0.99rem;
width: 73%;
background-color: #3085a7;
border-radius: 3rem;
padding: 50px;
line-height: 20px;
word-spacing: 0.2em;
}
input {
padding: 2%;
font-size: 1em;
font-family: sans-serif;
font-weight: 600;
border: none;
text-align: center;
}
li {
padding: 1rem;
}
footer {
font-size: 1.5em;
transform: translateY(100%);
text-align: center;
color: #000000;
}
a {
text-decoration: none;
color: #333;
transition: color 0.3s ease;
}
a:hover {
color: #3085a7;
}
@media only screen and (max-width: 767px) {
h1 {
font-size: 37.5px;
}
footer {
font-size: 0.81rem;
text-align: center;
}
}