-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (88 loc) · 1.6 KB
/
styles.css
File metadata and controls
100 lines (88 loc) · 1.6 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
/*
green #05b4ac
blue #174282
cyan #e6fffd
*/
body {
font-family: 'Arial', sans-serif;
background-color: #174282;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
}
form {
background-color: #e6fffd;
padding: 48px 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
z-index: 2;
}
h2 {
text-align: center;
color: #333;
font-size: 32px;
}
label {
display: block;
margin-bottom: 8px;
color: #666;
font-size: 18px; /* Adjusted font size */
}
input,
select,
textarea {
width: 100%;
padding: 8px;
margin-bottom: 12px;
border: 1px solid #05b4ac;
border-radius: 4px;
box-sizing: border-box;
font-size: 18px; /* Adjusted font size */
margin-bottom: 4%;
transition: background-color 0.2s ease, transform 0.2s ease;
}
input:hover,
select:hover,
textarea:hover {
background-color: #05b4ac;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
transform: scale(1.05);
}
input[type="checkbox"] {
margin-top: 8px;
width: 10%;
}
input[type="submit"] {
background-color: #174282;
color: #fff;
padding: 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
width: 30%;
margin-left: 25%;
margin-right: 2%;
}
input[type="submit"]:hover {
background-color: #05b4ac;
}
.texts {
width: 60%;
margin-left: auto;
}
img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
table {
width: 80%;
max-height: 80%;
display: block;
}