forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1.01 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: 100vw;
height: 100vh;
background-color: azure;
display: flex;
justify-content: center;
align-items: center;
}
.parent_div {
width: 30vw;
height: 50vh;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid #A8E890;
border-radius: 10px;
}
.btn-div {
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
}
.btn {
background-color: #A8E890;
border: none;
color: white;
border-radius: 5px;
padding: 5px 15px;
cursor: pointer;
font-size: 16px;
}
.btn:hover {
background-color: transparent;
color: #A8E890;
border: 1px solid #A8E890;
}
input {
margin: 5px;
padding: 5px;
border: 1px solid #A8E890;
border-radius: 10px;
width:100%
}
input:focus,
select:focus,
textarea:focus {
outline: none;
}