-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-styles.css
104 lines (102 loc) · 1.9 KB
/
1-styles.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
* {
margin: 0;
padding: 0;
}
body {
background-color: #1c4150;
}
.empty {
height: 160px;
}
.section1 {
background-image: url(./img/couple-home-watching-movie_23-2148600250.jpg);
background-size: cover;
background-position: 50% 100%;
}
.section1 h1 {
text-align: center;
margin-top: 50px;
text-shadow: 3px 3px 14px;
font-family: 'Kaushan Script', cursive;
color: snow;
}
.section2 {
background-color: snow;
text-align: center;
}
.section2 h1 {
font-family: 'Noto Serif JP', serif;
font-weight: bold;
margin-top: 50px;
}
.section2 h3 {
margin-top: 55px;
margin-bottom: 30px;
text-shadow: 3px 3px 18px;
}
form {
margin: auto;
width: 300px;
text-align: left;
}
#fpass {
float: right;
}
input {
margin: 5px;
}
#uname, #pass {
padding: 5px;
width: 280px;
margin-bottom: 15px;
border: black;
background-color: antiquewhite;
}
#sub {
margin: 40px;
margin-left: 30%;
padding: 5px 30px 5px 30px;
text-align: center;
font-size: 17px;
border-radius: 30px;
background-color: #649fad;
border: none;
}
#sub:hover {
background-color: #7fc5d6;
text-shadow: 5px 5px 10px skyblue;
}
h4 {
font-size: 22px;
margin-top: 15px;
margin-bottom: 20px;
}
#upa {
font-weight: bold;
font-size: 18px;
}
footer {
position: absolute;
bottom: 10px;
right: 20px;
text-shadow: 3px 3px 20px;
color: rgba(255, 250, 250, 0.274);
}
@media only screen and (max-width: 768px) {
.empty {
height: 0px;
}
.section1 {
height: 350px;
background-position: 50% 60%;
}
.section1 h1 {
margin-top: 160px;
color: rgb(31, 231, 231);
}
footer {
position: relative;
float: right;
margin: 10px;
}
}