-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (111 loc) · 2.26 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
*{
margin: 0;
padding: 0;
font-family: 'Madehand', sans-serif;
}
@font-face{
font-family: Madehand;
src: url(Madehand-Regular.ttf);
}
.part1{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(1.png);
background-position: center;
background-size: cover;
position: relative;
display: inline-block;
}
.part2{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(2.png);
background-position: center;
background-size: cover;
position: relative;
}
.enterance{
font-size: 100px;
color: aqua;
padding: 1%;
text-align: right;
}
.license{
font-size: 25px;
color: crimson;
text-decoration: none;
position: absolute;
top: 90%;
left: 90%;
transform: translate(-90%,-90%);
}
.contact a{
padding: 5px;
}
.contact h5{
color: #c8ff008f;
}
.contact{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%,-40%);
text-align: center;
padding: 3%;
font-size: 40px;
text-decoration: none;
display: inline-block;
background: #00ff5556;
border-radius: 35px;
}
.button{
display: inline-block;
color: antiquewhite;
border: 1px solid #91e8ee;
text-decoration: none;
margin: 15px;
background: #20ebda50;
position: relative;
cursor: pointer;
color: aquamarine;
border-radius: 20px;
}
.button:hover{
text-transform: uppercase;
}
.tg:hover{
background: #0051ff;
transition: 1s;
}
.gt:hover{
background: #05ec37;
transition: 1s;
}
.mail:hover{
background: #b700ff;
transition: 1s;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}
.openapp{
text-decoration: none;
}
@media(max-width: 700px) {
.enterance{
font-size: 40px;
}
.part1{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(1.png);
background-position: left;
background-size: cover;
position: relative;
display: inline-block;
}
}