-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
85 lines (79 loc) · 1.75 KB
/
about.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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
height:100vh;
font-family: 'Roboto', sans-serif;
background-color: #f2f2f2; /* cinza claro */
}
.container {
width: 375px;
padding: 0.5px;
background-color: #ffffff; /* branco */
flex-direction: column;
gap: 10px;
border-radius: 25px;
margin: 10px; /* margem cinza claro */
}
.main {
text-align:justify;
font-size: 0.95rem !important; /* tamanho da fonte atualizado com !important */
font-family: 'Times New Roman', Times, serif;
padding: 5px;
margin: 5px;
}
.main h1 {
font-size: 1rem !important; /* tamanho da fonte do título atualizado para ser menor */
color:fuchsia;
}
.header {
height: 44px;
background-color: #B61F43;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
}
.image1 {
width: 264px;
height: 255px;
background-color: #ddd;
}
.image2 {
width: 195px;
height: 152px;
background-color: #ddd;
border-radius: 70px;
}
.button {
padding: 10px 20px;
background-color: #B61F43;
color: #fff;
border: none;
cursor: pointer;
border-radius: 5px;
font-family: 'Roboto', sans-serif;
width: 167px;
height: 52px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
transition: all 0.3s ease 0s;
}
.button:hover {
background-color: #a11937;
box-shadow: 0px 0px 0px 167px 52px rgba(161, 25, 55, 0.6);
color: #fff;
transform: translateY(-7px);
}
.footer {
height: 110px;
background-color: #B61F43;
display: flex;
justify-content: space-around;
align-items: center;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
}
.footer .button {
width: 100px;
}