-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (113 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
*{
font-family: 'Poppins';
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
scroll-padding-top: 2rem;
}
body{
color: #0e2045;
background: #fff;
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
img{
width: 100%;
}
section{
padding: 3rem 0 2rem;
}
a{
text-decoration: none;
color: #0e2045;
}
.container{
max-width: 1024px;
margin: auto;
width: 100%;
}
.btn {
background-color: #eaeaea;
border: none;
padding: 8px 20px 8px 20px;
border-radius: 50px;
cursor: pointer;
}
.btn:hover{
box-shadow: 0 5px 30px 0 rgba(0,0,0,.05);
transition: .3s ease;
}
.btn:active {
scale: 95%;
}
.tools-btn {
background-color: #fff;
border: none;
padding: 8px 20px 8px 20px;
border-radius: 6px;
cursor: pointer;
margin: 2px;
}
.tools-btn:hover {
background-color: #eaeaea;
}
.tools-btn:active:hover {
background-color: #e1e0e0;
}
.tools-area {
background-color: #f8f9fa;
width: 100%;
padding: 20px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.txt-area .text {
width: 100%;
height: 400px;
resize: none;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
border: 3px solid #eaeaea;
border-top-color: #f8f9fa;
background-color: #fff;
outline: none;
padding: 10px 12px 10px 12px;
}
/* Ashish Credits */
.ashish-credits {
background-color: #fff;
border: 2px solid #e7e9eb;
font-size: smaller;
padding: .5rem .5rem;
width: 200px;
display: flex;
column-gap: .3rem;
justify-content: center;
border-radius: 50px;
box-shadow: 0 5px 30px 0 rgba(0,0,0,.05);
z-index: 9999;
position: fixed;
bottom: 1rem;
right: 1rem;
}
.ashish-credits .icon {
color: #8710d8
}
/* Making the Website Responsive */
@media (max-width: 1000px){
.container{
margin: 0 auto;
width: 90%;
}
}