-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
86 lines (75 loc) · 1.69 KB
/
style3.css
File metadata and controls
86 lines (75 loc) · 1.69 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
.container{
color: white;
text-align: center;
/* text-indent: 10px; */
height: 500px;
width: 400px;
margin-top: 50px;
margin-left: 350px;
background-color: rgb(1, 23, 43);
position: fixed;
box-shadow: 3px 3px 1px rgb(1, 23, 43);
border-radius: 20px;
box-shadow: 3px 3px 1px rgb(1, 23, 43);
border: none;
transition: all 3s ease-in-out;
}
body{
background-color: rgb(173, 69, 69);
}
#statement{
font-weight: bold;
}
.container input{
height: 40px;
width:300px;
margin: 20px;
border: none;
background-color: rgb(78, 78, 78);
border-radius: 10px;
}
:placeholder-shown{
text-align: start;
text-indent: 10px;
}
#button input{
background-color: blue;
color: white;
border: none;
transition: all 1s ease-in-out;
}
#button input:hover{
background-color: rgb(7, 233, 94);
color: white;
border: none;
}
.container h1:hover{
color: red;
transition: all 1s ease-in-out;
}
.container marquee{
color: rgb(255, 255, 255);
background-color: red;
font-style: italic;
border: 1px solid red;
box-shadow: 0px 0px 3px red;
width: 50px;
border-radius: 5px;
transition: all 1s ease-in-out;
}
.container p{
color: rgba(4, 243, 16, 0.897);
}
.container marquee:hover{
color: white;
border: 1px solid rgb(31, 177, 67);
background-color: rgb(31, 177, 67);
box-shadow: 0px 0px 3px rgb(42, 224, 18);
}
.container p:hover{
color:white;
transition: all 1s ease-in-out;
}
input:placeholder-shown:hover{
color: rgb(211, 13, 13);
}