-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain3.css
More file actions
110 lines (92 loc) · 1.38 KB
/
main3.css
File metadata and controls
110 lines (92 loc) · 1.38 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
body {
font-family: "Roboto", sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
}
.contact-info p {
margin-bottom: 10px;
}
form {
display: flex;
flex-direction: column;
}
label {
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
textarea {
height: 120px;
}
input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #555;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
}
header {
background-color: #f8f8f8;
padding: 20px;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo a {
text-decoration: none;
color: #333;
font-size: 20px;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.nav-links li {
margin-right: 15px;
}
.nav-links li a {
text-decoration: none;
color: #333;
font-size: 16px;
}
.nav-links li a:hover {
color: #666;
}
.footer {
background-color: #333;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.social-icon {
margin-right: 10px;
transition: transform 0.2s;
}
.social-icon:hover {
transform: scale(1.2);
}