-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
149 lines (126 loc) · 2.41 KB
/
Copy pathstyles.css
File metadata and controls
149 lines (126 loc) · 2.41 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
body {
font-family: cursive;
margin: 0;
padding: 0;
background-color: #753aa7;
}
.list_style{
font-size: 20px;
text-align: right;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
border: solid 2px;
box-shadow: 0 0 10px 0;
padding:10px;
background-color: skyblue;
}
.sign {
border-radius: 2px black;
box-shadow: 0 0 2px 0;
padding: 5px;
transition: box-shadow 0.3s ease;
color:white;
}
.sign:hover {
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
}
.form-container {
display: none;
}
.form-container.active {
display: block;
}
form {
width: 300px;
margin: 0 auto;
}
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
width: 100%;
padding: 8px;
margin-bottom: 5px;
}
input[type="submit"] {
background-color: black;
color: white;
padding: 10px 70px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: rgba(0, 0, 0, 0.518)
}
body, html {
margin: 0;
padding: 0;
height: 100%;
}
.container {
display: flex;
height: 100%;
}
.partition {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.text_trans {
font-size: 24px;
}
.text_trans {
font-size: 36px;
display: inline-block;
overflow: hidden;
white-space: nowrap;
position: relative;
}
.text_trans span {
display: inline-block;
opacity: 0;
transition: opacity 1s;
animation: animateText 5s steps(25, end) forwards infinite;
animation-delay: 1s;
;
}
@keyframes animateText {
0%, 40% { opacity: 0; transform: translateY(50px); } /* Initial and mid-point states */
50%, 100% { opacity: 1; transform: translateY(0); } /* Delay and final states */
}
.text_trans:hover {
transform: scale(1.2);
}
.ind-btn{
background-color: blue;
color: white;
padding: 10px 50px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
text-decoration: none;
margin: 10px;
}
.ind-btn:hover {
background-color: rgba(0, 0, 255, 0.509);
}