-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (35 loc) · 845 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Varela:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
*
{
margin: 0;
padding: 0;
font-family: 'Varela', sans-serif;
}
body
{
background: #428cf4 !important;
}
.main-div{
background: #e8eaec;
margin: 0 auto;
border: 8px solid #000000;
min-width: 310px;
max-width: 310px;
border-radius: 44px;
}
.input-shadow{
color: #0b254e;
background: #e8eaec;
box-shadow: 4px 4px black;
border: 3px solid black;
}
.btn-border-shadow {
border: 2px solid black !important;
box-shadow: 3px 3px black !important;
background-color: white;
}
.btn-border-shadow:hover {
border: 2px solid black !important;
box-shadow: 4px 4px black !important;
}