-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (66 loc) · 1.28 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
body{
margin: 0;
font-family: 'Courier New', Courier, monospace;
background:linear-gradient(to bottom , lightblue ,lightgreen) ;
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
text-align: center;
}
.container{
background-color: aliceblue;
padding: 20px;
border-radius: 5px;
box-shadow: 0 15px 25px rgba(0,0,0,4);
width: 90%;
margin: 10px ;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
}
h2{
font-weight: 400;
}
.input{
padding: 20px 10px;
font-size: 18px;
border-radius: 5px;
text-align: center;
width: 100px;
}
.errorMessage{
color: red;
font-weight: 600;
margin: 10px;
display: none;
}
.btn{
text-transform: uppercase;
margin: 20px 0;
width: 250px;
height: 45px;
font-size: 18px;
border-radius: 5px;
color:aliceblue;
background-color: blue;
box-shadow: 0 10px 5px rgba(0,0,0,1);
}
.btn:hover{
color: aliceblue;
background-color: green;
cursor: pointer;
transition: background-color 300ms ease-in-out;
}
.gallery img{
width: 400px;
height: 250px;
object-fit: cover;
border-radius: 5px;
margin: 5px;
}
.gallery{
display: none;
}