-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (96 loc) · 1.89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
width: auto;
height: 100vh;
background: linear-gradient(to bottom, #4CAF50, #2196F3);
background-repeat: no-repeat;
}
.main-image {
padding-top: 50px;
}
.front {
background-color: #0C172D;
margin: 5% 10%;
border-radius: 20px;
height: 80vh;
text-align: center;
}
h1 {
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 35px;
font-weight: bolder;
padding-bottom: 20px;
}
.social-media a {
font-size: 25px;
background-color: #464F56;
margin-right: 10px;
padding: 10px;
border-radius: 10px;
}
.pu {
text-align: center;
}
.popup-btn {
padding: 10px 20px;
color: white;
background: linear-gradient(to bottom, #4CAF50, #2196F3);
border: 3px solid #0C172D;
font-family: Verdana, Geneva, Tahoma, sans-serif;
border-radius: 20px;
color: white;
font-size: 16px;
cursor: pointer;
font-size: 20px;
text-align: center;
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: linear-gradient(to bottom, #4CAF50, #2196F3);
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding: 20px;
border-radius: 10px;
z-index: 1000;
}
.popup-content {
color: white;
text-align: center;
}
.close {
position: absolute;
top: 5px;
right: 10px;
cursor: pointer;
color: white;
font-size: 20px;
}
@media only screen and (max-width: 768px) {
.front {
margin: 10% 5%;
}
}
@media only screen and (max-width: 576px) {
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.front {
margin: 15% 2%;
}
h1 {
font-size: 28px;
}
.social-media a {
font-size: 20px;
padding: 8px;
margin-right: 5px;
}
}