-
Notifications
You must be signed in to change notification settings - Fork 6
/
indexstyle.css
125 lines (104 loc) · 2.17 KB
/
indexstyle.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.image{
filter: blur(2px);
-webkit-filter: blur(3px);
height: 730px;
width: 1528px;
object-fit: cover;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.login {
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: floralwhite;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}
.paper{
margin-top: 1%;
margin-left: -70%;
margin-right: 20%;
height:10%;
width: 180%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.diarytoday{
background-color: transparent;
resize: none;
}
textarea{
border: transparent;
font-style: oblique;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 20px;
}
textarea:hover{
background-color: transparent;
border: transparent;
text-decoration: none
}
a{
color: darkblue;
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
.form{
width: 300px;
margin: 0 auto;
}
input[type='email'],
input[type='password'],input[type='text'] {
width: 200px;
border-radius: 2px;
border: 1px solid #CCC;
padding: 10px;
color: #333;
font-size: 14px;
margin-top: 10px;
}
input[type='submit']{
padding: 10px 25px 8px;
color: #fff;
background-color: #e7d03a;
text-shadow: rgba(231,208,58,0.24) 0 1px 0;
font-size: 16px;
box-shadow: rgba(231,208,58,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0;
border: 1px solid #e7d03a;
border-radius: 2px;
margin-top: 10px;
cursor:pointer;
}
input[type='submit']:hover {
background-color: f0df74;
}
.verify-message {
padding-top: 100px;
padding-bottom: 100px;
}
button[type="submit"] {
padding: 0;
background: none;
border: none;
color: #007bff;
cursor: pointer;
}
button[type="submit"]:hover {
color: blue;
}
.ul {
list-style-type: none;
padding: 0;
}