-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project Tasks Form - Stylesheet .css
145 lines (119 loc) · 2.32 KB
/
Project Tasks Form - Stylesheet .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
126
127
128
129
130
131
132
133
134
135
136
137
138
/******************************************/
/************** פרוייקט 1 ****************/
/*************** 14.11.19 *****************/
/************** יובל דוד ****************/
/******************************************/
/*הגדרות עיצוב לכל הדף-תמונת רקע*/
body {
background-image: url(tile.jpg);
}
/*עיצוב הכותרת הראשית*/
h1 {
font-family: zing easy ,Chalkduster, fantasy;
text-align: center;
padding: 20px;
color: black;
}
/*עיצוב הטופס הראשי ליצירת משימה*/
form {
background-image: url(formbg.jpg);
padding: 12px;
margin-left:20% ;
margin-right: 20%;
text-align: center;
}
/*הגדרות עיצוב לקטגוריות בטופס*/
label {
font-weight: bold;
}
/*עיצוב הפתקים של המשימות החדשות שנוצרות*/
#container-notes{
display: flex;
flex-wrap: wrap;
margin: 2%;
}
/*מחלקה לעיצוב הפתק*/
.noteDiv {
background-image: url('notebg.png');
background-repeat: no-repeat;
padding: 3%;
margin: 2%;
height: 100%;
position: relative;
animation: noteDiv ease 3s;
-webkit-animation: noteDiv ease 3s;
-moz-animation: noteDiv ease 3s;
-o-animation: noteDiv ease 3s;
-ms-animation: noteDiv ease 3s;
}
@keyframes noteDiv{
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-moz-keyframes noteDiv {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-webkit-keyframes noteDiv {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-o-keyframes noteDiv {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-ms-keyframes noteDiv {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.taskDiv {
width: 100px;
height: 80px;
text-align: center;
overflow-y: auto;
word-wrap: break-word;
display: inline-block;
}
.dateDiv {
height: 15px;
text-align: left;
font-weight: bold;
font-size: 13px;
}
.timeDiv {
height: 15px;
text-align: left;
font-weight: bold;
font-size: 13px;
}
.xIcon {
display: inline-block;
position: absolute;
top: 20px;
right: 40px;
font-weight: bold;
opacity: 0;
}
.xIcon:hover {
cursor: pointer;
}