-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (65 loc) · 1.15 KB
/
style.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
body {
background-image: url("background.jpg");
background-size: cover;
font-family: Helvetica;
padding: 10px;
background: ('colorfulfreebg.jpg') no-repeat;
background-size: cover;
}
.box{
background-color: #FFFFFF;
border: 5px solid #CCCCCC;
position: absolute;
top: 250px;
left: 150px;
right: 140px;
padding: 25px;
}
.logo {
resize: both;
overflow: auto;
animation-name: fadeInTop;
animation-delay: 0s;
animation-duration: 1s;
}
.scrumlog_entry {
padding: 8px;
margin: 16px;
border: 2px solid rgba(0, 128, 0, 0.4);
border-radius: 5px;
background-color: rgba(0, 255, 0, 0.1);
}
.meeting_entry {
padding: 8px;
margin: 16px;
border: 2px solid rgba(128, 0, 0, 0.4);
border-radius: 5px;
background-color: rgba(255, 0, 0, 0.1);
}
@keyframes fadeInTop {
from {
position: absolute;
top: -100px;
opacity: 0;
}
to {
position: absolute;
top: 0px;
opacity: 1;
}
}
.title{
text-align: center;
font-family: 'Rubik Mono One', sans-serif;
margin: 30px;
}
.profile {
text-align: center;
font-family: 'Oxygen', sans-serif;
font-weight: bold;
}
.profile img{
border-radius: 50%;
border: 2px solid #ddd;
width: 150px;
}