-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (95 loc) · 1.96 KB
/
style.css
File metadata and controls
101 lines (95 loc) · 1.96 KB
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
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Raleway:wght@500&family=Roboto+Mono:ital,wght@0,700;1,400&family=Roboto:ital,wght@0,500;1,900&family=Tektur:wght@600&display=swap');
@import url('https://fonts.cdnfonts.com/css/kung-fu-master');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background: whitesmoke;
}
.overlay {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0, 0.9);
overflow-x: hidden;
transition: 0.5s;
}
.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #7c7c7c;
display: block;
transition: 0.3s;
font-family: 'Raleway', sans-serif;
}
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}
@media screen and (max-height: 450px) {
.overlay a {font-size: 20px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
span{
padding: 30px;
}
.container{
padding-left: 100px;
margin: 50px 0px 0px 20px;
}
.container .title{
font-family: 'Kung-Fu Master', sans-serif;
color: #7c7c7c;
font-size: 50px;
letter-spacing: 0.1em;
}
.container .small-title{
font-family: 'Oswald', sans-serif;
font-size: 30px;
margin: 50px 0px 10px 0px;
}
.container .text-div{
width: 90%;
text-align: justify;
text-justify: inter-word;
font-family: 'Raleway', sans-serif;
}
.container .small-title ul li{
font-size: 15px;
font-weight: lighter;
}
.container .list{
padding-left: 18px;
}
.container .list ul .c-Sharp{
width: 40px;
height: 40px;
}
.container .list ul .php{
width: 40px;
height: 40px;
}