-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.css
More file actions
137 lines (132 loc) · 2.26 KB
/
my.css
File metadata and controls
137 lines (132 loc) · 2.26 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
line-height: 2;
}
.Navber{
background-color: aliceblue;
padding: 10px 30px;
border-bottom: 2px solid rgba(7, 171, 43, 0.434);
position: fixed;
width: 100%;
top: 0;
}
.logo{
display: inline-block;
}
.logo a{
color: rgba(209, 11, 41, 0.868);
font-size: 40px;
text-decoration: none;
font-weight: bold;
}
.nav-link{
display: inline-block;
margin-left: 100px;
}
.nav-link ul{
display: inline-block;
margin: 0px 15px;
}
.nav-link a{
color: rgb(29, 75, 190);
text-decoration: none;
font-size: 20px;
margin: 0px 8px;
}
.nav-link a:hover,
.nav-link a.active{
color: rgba(207, 12, 218, 0.84);
}
.cat-baton{
float: right;
}
.st1{
display: inline-block;
padding: 10px 25px;
background-color: chartreuse;
text-decoration: none;
border-radius: 7px;
color: rgb(65, 1, 1);
transition:background-color 0.3s ;
}
.st1:hover{
background-color: aquamarine;
}
.hero{
background-color: aliceblue;
padding: 150px 50px 50px;
text-align: center;
}
.hero-comtent{
width: 200vh;
padding: 20px;
margin: 0 auto;
}
.hero h1{
font-size: 50px;
color: black;
margin-bottom: 25px;
}
.hero p{
font-size:20px;
color: blueviolet;
margin: 30px;
}
.hero-buton{
margin: 30px;
}
.st1.boton2{
background-color: aliceblue;
margin-left: 15px;
border: 1px solid;
}
.st1.boton2:hover{
background-color: red;
}
.hero-img img{
margin-top: 20px;
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 5px 15px rgb(130, 3, 3);
}
.from{
margin: 0;
padding: 0;
background-color: white;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
form{
background-color: aqua;
width: 50vh;
padding:20px;
border-radius: 5px;
display: flex;
flex-direction: column;
}
h2{
text-align: center;
}
input{
padding: 3px;
margin: 5px;
}
button{
padding: 4px;
margin: 13px;
background-color: rgb(44, 9, 218);
color: aliceblue;
border-radius: 5px;
border:1px solid white ;
}
button:hover{
background-color: rgb(35, 178, 222);
}