-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.css
89 lines (74 loc) · 1.4 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//Copyright 2020 Rizwan Sayyed (sayyed rizwan)
a{
margin-top: 50px;
color: white;
text-decoration: none;
font-family: Segoe UI;
font-size: 16px;
display: inline-block;
}
a:hover{
color: #dae4f2;
font-size: 26px;
cursor: pointer;
}
#bg-modal{
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
position: absolute;
top: 0;
display: flex;
justify-content: center;
align-items: center;
display: none;
}
.modal-contact{
border-radius: 8px;
width: 500px;
height: 374px;
background-color: white;
opacity: 1;
text-align: center;
padding: 20px;
position: relative;
}
.close{
position: absolute;
top: 10px;
right: 15px;
cursor: pointer;
}
.buttonpopup:hover{
background-color: #5391f5;
}
.buttonpopupclose:hover{
background-color: #eb8686;
}
.buttonpopup {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 8px;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.buttonpopupclose{
background-color: #f55353;
border: none;
width: 350px;
color: white;
padding: 19px 38px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 8px;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}