-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
111 lines (109 loc) · 1.86 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
body{
background: black;
color: white;
display: flex;
flex-direction: column;
align-items: center;
margin:0;
padding:0;
}
h1{
position:absolute;
left:50%;
transform: translate(-50%,0);
text-transform: uppercase;
letter-spacing: 5px;
margin:0;
padding:0;
font-size: 4em;
color:#000;
}
h1:before{
content: attr(data-text);
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
color: #fff;
overflow:hidden;
border-right: 1px solid #fff;
animation: type 10s linear infinite;
white-space: nowrap;
}
@keyframes type{
0%{
width: 0;
}
50%{
width: 100%;
color:#f00;
}
100%{
width: 0;
}
}
main{
position:relative;
top:100px;
}
select{
width : 250px;
padding: 5px;
height: 40px;
background: #000;
color: #fff;
border: 0;
border-radius: 10px;
font-size: 20px;
box-shadow: 0 5px 25px rgba(255,0,0,0.5);
-webkit-appearance: button;
outline: none;
cursor: pointer;
}
textarea{
width: 100%;
height: 50vh;
margin-top: 20px;
padding: 10px;
border-radius: 10px;
background: #000;
color: #fff;
}
.btn-save{
background: #000;
color: rgb(49, 47, 47);
width: 250px;
height: 40px;
font-size: 25px;
border: 0;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(255,0,0,0.3);
cursor: pointer;
transition: 2s;
}
.btn-save:hover{
color: #fff;
box-shadow: 0 5px 50px rgba(255,0,0,1);
}
#cent{
display:flex;
flex-direction: column;
align-items: center;
}
.hand{
position: relative;
display: inline-block;
animation: shrug 2s infinite;
}
@keyframes shrug{
0%{
transform: translateY(0);
}
50%{
transform: translateY(-20%);
}
100%{
transform: translateY(0);
}
}