-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (96 loc) · 1.66 KB
/
style.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
body {
font-family: Arial, sans-serif;
background-color: #384B56;
margin: 0;
padding: 0;
color: #fff;
width: 1440px;
height: 1645px;
top: -513px;
left: -721px;
padding: 0px 0px 110px 0px;
gap: 0px;
opacity: 0px;
}
header {
background-color: #405D6D;
color: white;
padding: 10px 0;
text-align: flex;
width: 1440px;
height: 115px;
gap: 0px;
border: 0px 0px 5px 0px;
opacity: 0px;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 10px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
width: 1200px;
height: 1397px;
margin: 20px auto;
padding: 20px;
background-color: #405D6D;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px 0px 0px 0px;
top: 138px;
left: 120px;
gap: 0px;
opacity: 0px;
}
.menu {
display: inline;
flex-direction: flex;
align-content:center ;
}
.container {
display: flex;
flex-direction: flex;
align-items: center;
}
form {
width: 100%;
display: flex;
flex-direction: column;
}
.form-group {
margin-bottom: 15px;
}
label {
margin-top: 10px;
}
input {
width: 100%;
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
margin-top: 20px;
padding: 10px;
background-color: #33C5F3;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #1DA1F2;
}
button:disabled {
background-color: #ccc;
cursor: not-allowed;
}