-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (75 loc) · 1.18 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
72
73
74
75
76
77
html, body{
height:100%;
}
body{
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
margin:0;
font-family: 'Trebuchet MS';
}
.overlay{
width:100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
display: flex;
justify-content: center;
align-items: center;
color:#fff;
flex-direction: column;
}
.top{
position: absolute;
top: 0;
left: 0;
right: 0;
font-size:25px;
display: flex;
padding:20px;
color:rgba(255,255,255,0.5);
}
.top .left{
flex: 1 0 auto;
text-align: left;
}
.top .right{
flex: 1 1 auto;
text-align: right;
}
.time{
font-size:200px;
margin:0;
font-weight: 400;
}
.greeting{
font-size:80px;
font-weight: 400;
margin:0;
}
input.user-name, input.interest{
width:20em;
text-align: center;
background: 0;
border: 0;
border-bottom: 2px solid #fff;
outline: 0;
font-size:30px;
color: #fff;
margin-top: 20px;
display:none;
}
a.photoby{
color: rgba(255,255,255,0.5);
text-decoration: none;
}
.change-btn{
position: absolute;
bottom: 20px;
font-size: 20px;
cursor:pointer;
display: none;
}
.change-btn:hover{
transition: all 0.5s ease-out;
text-decoration: underline;
}