-
Notifications
You must be signed in to change notification settings - Fork 0
/
Minorproject.css
129 lines (110 loc) · 2.35 KB
/
Minorproject.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{background: url(https://w.wallhaven.cc/full/4y/wallhaven-4yxoel.jpg);
background-size: 100px 100px;
background-repeat: no-repeat;
color: #fff;
padding: 10px 0;
text-align: center;}
*{
margin:0px;
padding: 0px;
box-sizing: border-box;
}
/* nav{
width: 100%;
height: 75px;
line-height: 75px;
padding: 0px 100px;
position: relative;
background-image: url(wallhaven-4yxoel_2560x1080.png);
}
*/
.social{
display:flex;
justify-content: space-evenly;
}
.c{
border-radius: 15px;
}
a{
color:red;
}
li{
list-style: none;
}
/* Minorproject.css */
body {
font-family: Arial, sans-serif;
margin: 0;
}
h1, h2 {
color: #333;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: 20px;
}
form {
margin: 20px 0;
}
label {
display: block;
margin: 10px 0 5px;
}
input {
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
button {
background-color: blue;
color: white;
padding: 10px 15px;
border: none;
cursor: pointer;
}
button:hover {
background-color: darkblue;
}
footer {
background-color: #f8f8f8;
padding: 20px;
text-align: center;
}
.footer {
background-color: #2c3e50; /* Dark background for the footer */
color: white; /* White text color for better contrast */
padding: 20px; /* Padding for spacing */
text-align: center; /* Center align text */
}
.footer-content {
display: flex; /* Use flexbox for layout */
flex-direction: column; /* Stack items vertically */
align-items: center; /* Center items */
}
.footer-logo {
margin-bottom: 10px; /* Space below the logo */
}
.footer-social {
margin-bottom: 10px; /* Space below the social links */
}
.social {
list-style: none; /* Remove default list styling */
padding: 0; /* Remove default padding */
display: flex; /* Use flexbox for social links */
justify-content: center; /* Center align the items */
}
.social li {
margin: 0 10px; /* Space between social icons */
}
.social img {
transition: transform 0.3s; /* Add a transition for hover effect */
}
.social img:hover {
transform: scale(1.1); /* Slightly enlarge the icon on hover */
}
.footer-bottom {
font-size: 14px; /* Smaller font size for the copyright text */
}