-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyles.css
121 lines (92 loc) · 1.8 KB
/
styles.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
115
116
117
118
119
120
121
body {
font-family: "Quicksand", Arial, sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 1.7;
background-image: url('back.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position:center;
background-size: 100% ;
margin: 0 auto;
max-width: 1024px;
min-width: 800px;
text-align: center;
}
*{
box-sizing: border-box;
}
.imglogo{
margin: 0;
padding: 0;
}
.big{
font-size: 8rem;
}
.headerpart{
display: flex;
flex-direction: row;
height: 200px;
}
.scrollable{
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
overflow-x: scroll;
}
.scrollable::-webkit-scrollbar{
display: none;
}
.leftp{
margin-top: 1rem;
text-align: left;
width: 50%;
}
.rightp{
width: 50%;
text-align: right;
}
.nav-link {
display: block;
padding: .5rem 1rem;
color: black;
font-weight: 5px;
font-size: 17px;
text-decoration: none;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.heading{
font-weight: 20px;
font-size: 40px;
text-align: center;
}
.blurred-container {
border-radius: 25px;
display: flex;
justify-content: center;
align-items: center;
background: url('sky.jpg');
background-size: cover;
background-attachment: fixed;
height: 600px;
width: 1000px;
}
.blurred-container .content {
overflow: hidden;
box-shadow: 0 5px 32px rgba(0, 0, 0, 0.5);
padding: 0px 10px 10px 0px;
background: inherit;
border-radius: 12px;
height: 600px;
width: 1000px;
}
.blurred-container .content::before {
content: "";
position: absolute;
background: inherit;
filter: blur(20px);
}
.blurred-container .content h1,
.blurred-container .content h2 {
position: center;
z-index: 2;
}