-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
110 lines (109 loc) · 2.05 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@500&display=swap');
html, body {
height: 100%;
width: 100%;
}
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
background-image: url("https://m.media-amazon.com/images/I/81iVhz6Rt6L._SL1000_.jpg");
background-color: black;
background-position: center;
background-repeat: no repeat;
font-family: 'Noto Sans Mono', monospace;
}
#target{
/* outline:none; */
/* border:none; */
border:1px solid white;
background:none;
color: #f60404;
font-size: 15px;
height: 24px;
width:87%;
z-index:2;
padding-left:11px;
}
.heading{
font-size:8vh;
color:#009912;
text-shadow: 2px 2px 4px lime;
text-align:center;
}
.container{
display:flex;
justify-content:space-around;
align-items: center;
width:100vw;
height:100vh;
}
.side{
position:relative;
width:21%;
background:rgba(0,0,0,0.8);
border:1px solid grey;
border-radius: 8px;
height:80%;
padding:2vh;
color:#009912;
text-shadow: 0px 0px 10px lime;
overflow:hidden;
}
.main{
position:relative;
width:50%;
background:rgba(0,0,0,0.8);
border:1px solid grey;
border-radius: 8px;
height:80%;
padding:2vh;
}
.side1{
font-size:2vh;
position:absolute;
height:90%;
width: 90%;
word-wrap: break-word;
text-align: center;
/* overflow: hidden; */
}
.hack-btn{
display:flex;
justify-content:space-around;
align-items: center;
position:absolute;
bottom:11%;
left:45%;
height:4%;
width:10%;
background:rgba(0,156,0,0.7);
border-radius: 8%;
color:rgba(255,255,255,0.5);
text-align:center;
cursor:pointer;
transition: all 100ms ease-in-out;
font-size:2.5vh;
padding:0.5vh;
}
.hack-btn:hover{
transform:scale(1.06)
}
.hack-btn:active{
transform:scale(0.96)
}
.text{
font-size:2vh;
color:#009912;
text-shadow: 0px 0px 8px lime;
}
input{
margin:2.5px;
accent-color:#009912; ;
}
label{
font-size:1rem;
color:#009912; ;
}