Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
projeto-integrador-crud-fazenda
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2024105070039
projeto-integrador-crud-fazenda
Commits
ad2ba986
Commit
ad2ba986
authored
Apr 16, 2026
by
2024105070012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
css
parent
3f0894a2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
85 additions
and
0 deletions
+85
-0
static.css
static/css/static.css
+85
-0
No files found.
static/css/static.css
View file @
ad2ba986
:root
{
--primary-green
:
#2e7d32
;
--soil-brown
:
#5d4037
;
--background
:
#f1f8e9
;
--white
:
#ffffff
;
}
body
{
font-family
:
'Segoe UI'
,
sans-serif
;
background-color
:
var
(
--background
);
color
:
var
(
--soil-brown
);
margin
:
0
;
padding
:
20px
;
}
.container
{
max-width
:
900px
;
margin
:
0
auto
;
}
header
{
text-align
:
center
;
color
:
var
(
--primary-green
);
margin-bottom
:
30px
;
}
.card
{
background
:
var
(
--white
);
padding
:
20px
;
border-radius
:
12px
;
box-shadow
:
0
4px
6px
rgba
(
0
,
0
,
0
,
0.1
);
margin-bottom
:
20px
;
}
.grid-form
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
;
gap
:
15px
;
margin-bottom
:
15px
;
}
input
{
padding
:
12px
;
border
:
1px
solid
#ccc
;
border-radius
:
6px
;
font-size
:
1rem
;
}
.btn-success
{
background-color
:
var
(
--primary-green
);
color
:
white
;
padding
:
12px
24px
;
border
:
none
;
border-radius
:
6px
;
cursor
:
pointer
;
width
:
100%
;
font-weight
:
bold
;
}
.btn-success
:hover
{
background-color
:
#1b5e20
;
}
table
{
width
:
100%
;
border-collapse
:
collapse
;
margin-top
:
10px
;
}
th
{
background-color
:
var
(
--soil-brown
);
color
:
white
;
padding
:
12px
;
text-align
:
left
;
}
td
{
padding
:
12px
;
border-bottom
:
1px
solid
#ddd
;
}
tr
:hover
{
background-color
:
#f9f9f9
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment