-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (105 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (105 loc) · 1.61 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
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
body{
font-family:Segoe UI, sans-serif;
background:#f4f8f4;
color:#222;
}
nav{
position:fixed;
top:0;
width:100%;
background:#1b5e20;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
z-index:1000;
}
.logo{
font-size:1.4rem;
font-weight:bold;
}
nav ul{
display:flex;
gap:15px;
list-style:none;
}
nav button{
background:none;
border:none;
color:white;
cursor:pointer;
font-size:1rem;
}
main{
margin-top:90px;
}
.pagina{
display:none;
min-height:80vh;
padding:60px 8%;
}
.ativa{
display:block;
}
.hero{
text-align:center;
padding-top:100px;
}
.hero h1{
font-size:4rem;
color:#1b5e20;
}
.hero p{
margin:20px auto;
max-width:700px;
font-size:1.2rem;
}
.cta{
background:#2e7d32;
color:white;
border:none;
padding:15px 35px;
border-radius:50px;
cursor:pointer;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}
.card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}
.card:hover{
transform:translateY(-8px);
}
h2{
color:#1b5e20;
margin-bottom:20px;
}
form{
max-width:600px;
display:flex;
flex-direction:column;
gap:15px;
}
input,
textarea{
padding:15px;
border:1px solid #ccc;
border-radius:10px;
}
form button{
background:#2e7d32;
color:white;
border:none;
padding:15px;
border-radius:10px;
cursor:pointer;
}