forked from Oracle-Next-Education/challenge-amigo-secreto_pt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
162 lines (143 loc) · 3.12 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
:root {
--color-primary: #4B69FD;
--color-secondary: #FFF9EB;
--color-tertiary: #C4C4C4;
--color-button: #fe652b;
--color-button-hover: #e55720;
--color-text: #444444;
--color-white: #FFFFFF;
}
/* Estilos gerais */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background-color: var(--color-primary);
display: flex;
justify-content: center;
align-items: center;
}
.main-content {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
/* Banner */
.header-banner {
flex: 40%;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 0 0;
}
/* Seção de entrada */
.input-section {
flex: 60%;
background-color: var(--color-secondary);
border: 1px solid #000;
border-radius: 64px 64px 0 0;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
width: 100%;
}
/* Títulos */
.main-title {
font-size: 48px;
font-family: "Merriweather", serif;
font-weight: 900;
font-style: italic;
color: var(--color-white);
}
.section-title {
font-family: "Inter", serif;
font-size: 36px;
font-weight: 700;
color: var(--color-primary);
margin: 10px 0;
text-align: center;
}
/* Contêineres de entrada e botão */
.input-wrapper {
display: flex;
justify-content: center;
width: 100%;
max-width: 600px;
margin-top: 20px;
}
.input-name {
width: 100%;
padding: 10px;
border: 2px solid #000;
border-radius: 25px 0 0 25px;
font-size: 16px;
}
.button-container {
width: 300px;
justify-content: center;
}
/* Estilos de entrada de texto */
.input-title {
flex: 1;
padding: 10px 15px;
font-size: 16px;
border: 2px solid #333;
border-right: none;
border-radius: 25px 0 0 25px;
font-family: "Merriweather", serif;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Estilos de botão */
button {
padding: 15px 30px;
font-family: "Inter", sans-serif;
font-size: 16px;
border: 2px solid #000;
border-radius: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.button-add {
background-color: var(--color-tertiary);
color: var(--color-text);
border-radius: 0 25px 25px 0;
}
.button-add:hover {
background-color: #a1a1a1;
}
/* Listas */
ul {
list-style-type: none;
color: var(--color-text);
font-family: "Inter", sans-serif;
font-size: 18px;
margin: 20px 0;
}
.result-list {
margin-top: 15px;
color: #05DF05;
font-size: 22px;
font-weight: bold;
text-align: center;
}
/* Botão de sortear título */
.button-draw {
display: flex;
align-items: center;
width: 100%;
padding: 10px 40px;
color: var(--color-white);
background-color: var(--color-button);
font-size: 16px;
}
.button-draw img {
margin-right: 40px;
}
.button-draw:hover {
background-color: var(--color-button-hover);
}