forked from Arkapro1/fileDownloaderWebProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (57 loc) · 1.15 KB
/
style.css
File metadata and controls
58 lines (57 loc) · 1.15 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: rgb(99, 112, 235);
}
.wrapper{
width: 550px;
height: 250px;
background: white;
border-radius: 30px;
padding: 10px 25px 25px;
box-shadow: 4px 4px 35px 2px;
}
header h1{
font-size: 30px;
font-weight: 500;
}
header p{
font-size: 18px;
margin-top: 5px;
}
form input{
width: 100%;
height: 60px;
outline: 1px;
font-size: 19px;
padding: 0 17px;
margin-bottom: 5px;
border-radius: 5px;
border: 1px solid rgb(60, 252, 198);
}
form button{
width: 100%;
height: 35px;
outline: none;
border: 1px;
color: rgb(0, 0, 0);
font-size: medium;
background-color: rgb(133, 250, 217);
border-radius: 8px;
pointer-events: none;
opacity: 0.5 ;
}
form input:valid ~ button{
opacity: 1;
background-color:rgb(250, 231, 104);
pointer-events: auto;
}