-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (88 loc) · 1.45 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
*{
margin: 0;
padding: 0;
font-family: 'Poppins',sans-serif;
box-sizing: border-box;
}
.heading-1{
text-align: center;
padding-top: 30px;
padding-bottom: 15px;
font-size: 45px;
}
.heading-1:hover{
transform:scale(1.1);
transition-duration: 1s;
}
body{
background: #454545;
color: #fff;
}
.container{
width: 100%;
height: 100vh;
padding: 20px;
display: flex;
}
.left,.right{
flex-basis: 50%;
padding: 10px;
}
textarea{
width: 100%;
height: 26.5%;
background: #1f1f1f;
color: #fff;
padding: 10px 20px;
border: 0;
outline: 0;
font-size: 25px;
}
iframe{
width: 100%;
height: 85%;
background: #fff;
border: 0;
outline: 0;
}
label i{
margin-right: 10px;
margin-left: 10px;
}
label{
display: flex;
align-items: center;
background: #000;
height: 30px;
font-size: 25px;
}
footer{
height: 70px;
background-color: rgb(0, 0, 0);
display: flex;
}
.f1{
text-decoration: none;
color: white;
font-size: 45px;
margin-top: 10px;
margin-left:500px ;
}
.f1:hover{
transform: scale(1.3);
color: #930000;
}
.f2{
text-decoration: none;
color: white;
font-size: 45px;
margin-top: 10px;
margin-left:830px ;
}
.f2:hover{
transform: scale(1.3);
color: #930000;
}
img{
border-radius: 25px;
}