-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
93 lines (92 loc) · 1.62 KB
/
main.css
File metadata and controls
93 lines (92 loc) · 1.62 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
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
body{
font-family: "Madimi One", sans-serif;
background-color:#7700FF ;
color: #55FF00;
}
footer,
header .container{
padding: 24px 40px;
display: flex;
align-items: baseline;
justify-content: space-between;
background-color:#0011ff4f ;
color:#FFFD00 ;
}
footer small,
footer a,
header ul li,
header ul li a{
padding: 0px 5px;
display: inline;
text-decoration: none;
list-style-type: none;
font-size: 20px;
color: #FFFD00;
}
section h1,
section .container{
padding: 0px 100px;
margin: 40px 0px;
display: flex;
align-items: center;
justify-content:center;
letter-spacing: 5px;
}
section p{
font-size: 20px;
letter-spacing: 8px;
}
.container img{
height: 350px;
margin: 0px 20px;
}
#conhecimentos .container{
display: flex;
flex-direction: column;
}
#conhecimentos .article_1{
display: flex;
flex-direction: row;
align-items: center;
}
#conhecimentos .article_2{
display: flex;
flex-direction: row-reverse;
align-items: center;
}
#saibaMais .container{
padding: 0px 100px;
display: flex;
flex-direction: column;
}
#saibaMais p{
padding: 0px 250px;
margin-bottom: 50px;
}
form{
display: flex;
flex-direction: column;
}
form input{
background-color: #0011ff21;
color: #fff;
width: 300px;
height: 40px;
padding-left: 20px;
}
form button{
font-size: 24px;
width: 300px;
height: 40px;
background-color: #000;
color: #55FF00;
}
form button:hover{
background-color: #3e4043;
cursor: pointer;
}