forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.css
More file actions
92 lines (80 loc) · 1.83 KB
/
design.css
File metadata and controls
92 lines (80 loc) · 1.83 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
body{
background-color: rgba(0, 255, 255, 0.863);
}
.box{
background-color: rgba(0, 0, 0, 0.658);
width: 670px;
height: 380px;
border-radius: 12px;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.521);
margin-left: 340px;
margin-top: 120px;
align-items: center;
}
.header{
color: rgba(0, 255, 255, 0.863);
font-weight: 700;
font: bolder;
font-size: 1.5em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 95px;
animation-name: sample;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes sample {
from{font-size: 1.5em; color: aqua;}
to{font-size: 1.5em; color: rgba(0, 255, 255, 0.658);}
}
.vl{
position: absolute;
margin: 90px 80px;
border-left: 2px solid rgba(0, 255, 255, 0.863);
height: 110px;
}
.wrapper{
position: absolute;
margin: 65px 380px;
}
input{
background-color:rgba(0, 0, 0, 0.00);
border: none;
font-size: 1.2em;
color: white;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
::placeholder{
color: white;
}
.app-form-button{
color: rgba(0, 255, 255, 0.671);
font: bolder;
cursor: pointer;
font-size: 1.1em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-transform: uppercase;
}
hr{
border: 0.3px solid rgba(0, 255, 255, 0.116);
}
#showData{
color: white;
font-weight: 600;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-left: 85px;
}
.saka{
color: teal;
margin-top: 95px;
}
.refresh{
background-color: teal;
border: none;
color: rgba(0, 255, 255, 0.76);
font-size: 1.2em;
border-radius: 5px;
padding: 2px;
cursor: pointer ;
}