-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (82 loc) · 1.42 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
@import url('https://fonts.googleapis.com/css2?family=Gayathri:wght@100;400;700&display=swap');
*{
box-sizing: border-box;
margin:0;
padding:0;
}
html,body {
font-family: 'Gayathri', sans-serif;
font-size:28px;
color:rgb(49, 49, 49);
}
body{
display: felx;
flex-direction: column;
justify-content: center;
align-items: center;
}
header{
display: flex;
width:100%;
padding:60px 40px 0px 40px;
justify-content: center;}
h1{
position: relative;
left:-200px;
}
ul{
list-style: none;
position: relative;
left:180px;
}
li{
float: left;
margin-left: 20px;
padding-top:15px;
}
li a{
text-decoration: none;
color:rgb(49, 49, 49);
}
li a:hover{
color:rgb(112, 112, 112);
}
main{
margin:0 0px;
padding:0px 40px;
margin:0 auto;
width:100%;
}
form{
width:50%;
display: flex;
flex-direction: column;
align-items: center;
margin:0 auto;
padding:40px 20px;
background-color:rgb(223, 223, 223);
}
input{
width:35%;
height: 30px;
margin: 5px 0px;
padding:5px;
border:1px solid rgb(125, 190, 247);
}
input[type=submit]{
width:15%;
cursor: pointer;
}
input[type=submit]:hover{
background-color:rgb(125, 190, 247);
transition: background 0.5s;
}
input:focus{
outline: none;
}
footer{
width:100%;
margin:0 auto;
text-align: center;
padding-top:40px;
}