-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (99 loc) · 1.87 KB
/
style.css
File metadata and controls
110 lines (99 loc) · 1.87 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
@import url('https://fonts.googleapis.com/css2?family=Roboto');
*{
margin: 0;
padding:0;
box-sizing: border-box;
}
body{
font-family: 'Roboto',sans-serif;
background-color: #eee;
margin-top:3px;
}
h1{
font-weight: 400;
font-size: 2.5rem;
text-align: center;
padding: 5px;
margin: 10px;
margin-top: 0px;
text-decoration: underline;
color: rgb(65, 63, 63);
}
.main-container{
box-shadow: 30px 0 40px rgba(0, 0, 0, 0.2), -30px 0 40px rgba(0, 0, 0, 0.2);
height: 80%;
width:50%;
padding: 20px;
padding-left: 50px;
margin: auto;
background: #fff;
align-items: center;
border: 0.8px solid rgba(0, 0, 0, 0.3);
border-radius: 15px;
}
.form1{
padding-bottom: 20px;
display: flex;
flex-direction:column;
align-items: center;
}
.form1-div{
margin-bottom: 15px;
display: flex;
flex-direction: column;
align-items: center;
}
.form1-div label{
display: block;
padding: 5px;
font-size: 20px;
}
.form1-div input{
padding: 4px;
outline: none;
width: 200px;
border-radius: 20px;
border: 1px solid #000;
transition: 0.5s;
}
.form1-div input:focus{
border: 2px solid #000;
}
.form2{
display: flex;
flex-direction: column;
align-items: center;
text-transform:capitalize;
}
.form2 table tr{
padding: 30px;
margin: 10px;
}
.form2 tr th,
.form2 tr td{
padding:2px;
padding-right: 7px;
}
.form2 tr td input{
padding: 4px;
outline: none;
width: 200px;
border-radius: 20px;
border: 1px solid #000;
transition: 0.5s;
}
.submit{
padding: 10px 20px;
margin: 10px;
border-radius:30px;
border: 1px solid #000;
background: rgb(219, 218, 218);
font-size: 20px;
font-weight:lighter;
}
@media (max-width: 1000px)
{
.main-container{
width: 80%;
}
}