-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
164 lines (134 loc) · 2.58 KB
/
styles.css
File metadata and controls
164 lines (134 loc) · 2.58 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
header {
text-align: center;
background-image: url(../Pics/water.jpg);
background-size: 100%;
background-repeat: no-repeat;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: aqua;
}
li {
float: left;
}
li a {
display: block;
color:black;
padding:14px 16px;
background-color: aqua;
text-decoration: none;
font-size: 25px;
font-weight: bold;
}
a:hover{
color: aqua;
background-color: rgb(80, 79, 79);
}
.search{
display: block;
float: right;
color:black;
padding:10px 2px;
margin: 0px;;
background-color: aqua;
}
h1{
color: black;
text-shadow: 1.5px 2px 4px white, 0px 0px 25px rgb(0, 0, 0);
}
p {
color: aqua;
font-weight:bold;
font-size: 18px;
}
body {
background-color: rgb(80, 79, 79);
margin: 0;
color:aqua;
}
#first_para {
width:auto;
background-color: rgb(80, 79, 79);
color:aqua;
text-align: left;
text-indent: 50px;
line-height: 1.5;
font-size: 18px;
}
table, th, td {
align-content: center;
border: 1px solid aqua;
border-collapse: collapse;
padding: 10px 60px 10px 2px;
}
#water{
border: 1px solid rgb(80, 79, 79);
border-radius:10px;
width:350px;
height:150px;
margin:0 auto;
}
.face{
border:1px solid wheat;
border-radius:10px;
height:480px;
width:310px;
margin: 10px;
padding: 0px 0px 0px 1px;
}
input {
padding: 5px 5px;
box-sizing: border-box;
border: 4px aqua;
border-radius: 3px;
}
div.gallery {
float: left;
width: auto;
padding: 0px 50px 0px 50px;
font-size: 0px;
}
div.gallery:hover {
border:0px solid aqua;
}
#line{
border-top: 3px solid aqua;
}
.button{
background-color: aqua;
color:rgb(80, 79, 79);
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
border: 1px solid black;
padding: 12px 28px;
}
.button:hover {
background-color: rgb(80, 79, 79);
color:aqua;
}
.stack {
border:1px solid aqua;
clear: right;
float: right;
}
#rotate{
transform: rotate(90deg);
margin: 35px 100px 40px 0px;
height: 350px;
width: 100%;
}
footer{
position: fixed;
bottom: 0;
width: 100%;
background-color:aqua;
color: black;
text-align: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}