-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (96 loc) · 1.65 KB
/
style.css
File metadata and controls
99 lines (96 loc) · 1.65 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
93
94
95
96
97
98
99
body
{
background: #eff0f3;
font-family: cursive;
}
#row
{
background-color: #25b99a;
box-shadow: 0px 2px 4px rgba(51, 130, 209, 0.973);
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
h1
{
padding: 1%;
margin-bottom: 2px;
margin-top: 10px;
}
#image
{
float: left;
overflow: hidden;
transition-duration: 0.8s;
transition-property: transform;
margin-top: -11px;
}
#image:hover {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
#btn {
background-color: #25b99a;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
font-size: 16px;
margin: 4px 2px;
opacity: 0.6;
transition: 0.3s;
display: inline-block;
text-decoration: none;
cursor: pointer;
}
#btn:hover {opacity: 1}
#text_Field
{
width: 80%;
height: 40px;
color: black;
font-size: 15px;
font-weight: 400;
padding-left: 1%;
padding-right: 1%;
background: rgba(255, 255, 255, 0.60);
float: left;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
box-shadow: none;
margin-right: 1%;
border: 0px;
outline: none;
}
#span
{
/* margin-top: 14px;
width: 50%;
float: left; */
font-size: 22px;
word-wrap: break-word;
}
li
{
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
}
#wrap_Btn
{
/* width: 40%;
float: right; */
}
ul{
padding-left: 0;
}
@media only screen and (max-width: 600px) {
li {
display: block;
}
#wrap_Btn{
text-align: center;
}
}