-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
73 lines (73 loc) · 1.61 KB
/
index.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
body{
margin:0;
font-family: Ubuntu, sans-serif;
}
.background{
background-image: url("Background.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: rgb(255, 255, 255);
width: 100%;
height:100%;
position: absolute;
display:flex;
justify-content: center;
align-items: center;
}
.container{
text-align: center;
padding: 20px;
width:80%;
height:60%;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
cursor: default;
position: relative;
background: rgba( 255, 255, 255, 0.50 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 1px );
-webkit-backdrop-filter: blur( 5.5px );
border-radius: 10px;
border: 2px solid rgba(255, 255, 255);
color:#277459;
}
form{
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
form input{
margin: 5px;
}
form input[type="text"],input[type="date"]{
outline: none;
border: none;
color:#277459;
background: rgb(246, 247, 245);
font-weight: 700;
border: none;
border-bottom: 2px solid #277459;
}
form input[type="submit"]{
border-radius: 20px;
outline: none;
border: none;
color:#277459;
background:white;
width:150px;
height:40px;
font-weight: 700;
cursor:pointer;
}
form input[type="submit"]:hover{
color:white;
background:#277459;
}
h6{
color:#56536E;
}