-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
138 lines (122 loc) · 2.46 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
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
*{
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
width:100%;
height:100%;
}
@-webkit-keyframes colorPulse{
0% {background-color:#45CEEF;}
25% {background-color:#FFF5A5;}
50% {background-color:#FFD4DA;}
75% {background-color:#99D2E4;}
100% {background-color:#D8CAB4;}
}
input,
input::-webkit-input-placeholder {
color: #000000;
font-size: 20px;
line-height: 2;
}
header{
background: #FFFFFF;
box-shadow: inset 0px -4px 15px -2px #000000;
padding: 0 50px;
font-size: 30px;
text-transform: uppercase;
width:100%;
height:75px;
line-height: 75px;
position: relative;
z-index:100;
}
#container{
width:100%;
height:calc(100vh - 75px);
}
#left{
float:left;
width: 50%;
background: orange;
min-height:100%;
-webkit-animation: colorPulse 40s infinite alternate;
}
#right{
float:right;
width:50%;
min-height:100%;
background: url("img/pug.jpg") no-repeat center left;
background-size: cover;
}
.inner{
margin:0 auto;
width: 80%;
}
#getstarted{
padding-top:50%;
}
#getstarted button{
border: 2px solid rgba(255,255,255,0.2);
padding: 20px;
border-radius: 15px;
background: rgba(255,255,255,0.45);
font-weight: bold;
font-size:16px;
margin: 0 auto;
display:block;
}
#getstarted button:hover{
background: rgba(255,255,255,0.55);
cursor: pointer;
}
#messages{
display:none;
margin-top:50px;
}
#messagesDiv{
border: 2px solid rgba(255,255,255,0.2);
-webkit-box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
-moz-box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
padding: 15px;
background: rgba(255,255,255,0.5);
}
#messagesDiv > div{
margin-bottom:15px;
font-size:1.5em;
}
#messages h3{
border-bottom: 1px solid #222222;
margin: 30px 0 10px;
}
#messages h3 span {
font-size:80%;
font-style:italic;
color:#555555;
}
input[type=text]{
border: 0;
-webkit-box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
-moz-box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
box-shadow:
inset 0 0 8px rgba(0,0,0,0.1),
0 0 16px rgba(0,0,0,0.1);
padding: 15px;
background: rgba(0,0,0,0.1);
margin: 0 0 10px 0;
width:100%;
height:70px;
}