-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (97 loc) · 2.51 KB
/
styles.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
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
min-height: 100vh;
background-color: #e5b8b1;
}
main {
flex: 1;
}
@font-face {
font-family: 'Punk Kid'; /* Give your font a name */
src: url('"C:\Users\rhear\OneDrive\Desktop\bitsprint\Final\anushka_hackathon\anushka_hackathon\punk kid.ttf"') format('.ttf'); /* Specify the path to your .ttf file */
/* Add additional font formats (e.g., 'woff', 'woff2') if needed */
}
h2 {
font-family: 'Punk Kid', 'Times New Roman', Times, serif; /* Use your custom font or fallback to a generic sans-serif font */
/* Additional styling for h2 if desired */
font-size: 80px; /* Adjust the size as needed */
color: #333; /* Text color */
text-align: center; /* Center the text */
margin-bottom: 30px; /* Adjust the bottom margin as needed */
font-weight: bold; /* Make the text bold */
text-transform: uppercase; /* Convert text to uppercase */
letter-spacing: 2px; /* Adjust letter spacing as needed */
line-height: 1.2; /* Adjust line height as needed */
}
.form-group {
margin-bottom: 25px;
}
label {
display: block;
margin-bottom: 12px;
color: #666;
}
input[type="text"],
input[type="file"] {
width: 100%;
padding: 12px;
font-size: 16px;
border-radius: 8px;
border: 1px solid #ccc;
margin-bottom: 15px;
}
button {
width: 100%;
padding: 12px;
font-size: 18px;
border-radius: 8px;
border: none;
background-color: #4c84af;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #000000;
}
#result-container {
margin-top: 30px;
border-top: 1px solid #ccc;
padding-top: 30px;
}
footer {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
}
.footer-col {
display: inline-block;
vertical-align: top;
margin-right: 10px;
}
.footer-col:last-child {
margin-right: 0;
}
.footer-col h4 {
color: #4b4b4b;
font-size: 14px;
margin-bottom: 5px;
}
.footer-col ul {
list-style: none;
padding: 0;
}
.footer-col ul li {
line-height: 20px;
}
.footer-col ul li a {
color: #777;
text-decoration: none;
}
</style>