-
Notifications
You must be signed in to change notification settings - Fork 0
/
sciotecno.css
114 lines (96 loc) · 1.72 KB
/
sciotecno.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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
color: #333;
}
header {
background: linear-gradient(45deg, #ff0066, #ffcc00);
text-align: center;
padding: 50px 20px;
color: white;
}
header .logo img {
width: 100px;
height: 100px;
border-radius: 50%;
}
header h1 {
margin: 10px 0;
font-size: 2.5em;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
transition: background-color 0.3s;
}
nav a:hover {
background-color: #575757;
}
main {
padding: 20px;
}
section {
margin-bottom: 40px;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section h2 {
color: #ff0066;
border-bottom: 2px solid #ff0066;
padding-bottom: 10px;
margin-bottom: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
}
footer p {
margin: 0;
}
footer .social-links a {
margin: 0 10px;
color: #ffcc00;
text-decoration: none;
font-size: 1.5em;
transition: color 0.3s;
}
footer .social-links a:hover {
color: #ff0066;
}
form {
display: flex;
flex-direction: column;
}
form label {
margin-top: 10px;
}
form input, form textarea, form button {
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
background-color: #ff0066;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
form button:hover {
background-color: #ffcc00;
}