-
Notifications
You must be signed in to change notification settings - Fork 0
/
homeStyle.css
128 lines (107 loc) · 1.92 KB
/
homeStyle.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
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
}
a:visited, a:link {
text-decoration: none;
}
body, html {
background-color: #13191c;
margin: 0;
padding: 0;
}
h1, h2, h3, h4 {
color: #fff;
}
h1, h2 {
text-align: center;
}
h3 {
font-size: 50px;
text-align: right;
display: block;
background-color: #263238;
padding: 10px 30px 10px 0px;
width: 200px;
position: relative;
margin-bottom: -30px;
z-index: 2;
border-radius: 0px 3px 3px 0px;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
p {
font-size: 24px;
font-weight: 400;
}
section {
color: #000;
background-color: #fff;
display: block;
position: relative;
padding: 40px;
margin-right: 10%;
border-radius: 0px 3px 3px 0px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
overflow: auto;
justify-content: center;
align-items: center;
text-align: center;
}
#header {
color: white;
text-align: center;
margin: 40px auto;
display: block;
width: 90%;
max-width: 500px;
}
#createLink {
display: block;
cursor: pointer;
font-weight: 900;
color: #ffffff;
font-size: 30px;
line-height: 40px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
height: 50px;
width: 280px;
border: none;
padding: 5px 20px;
background-color: #ff4081;
border-radius: 3px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}
#createLink:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
#create {
width: 250px;
}
#share {
width: 300px;
}
#vote {
width: 350px;
}
.bodyImage {
display: inline-block;
margin: 0 auto;
vertical-align: top;
width: 400px;
}
.text {
display: inline-block;
width: 60%;
text-align: left;
}
h4 {
text-align: center;
font-size: 30px;
margin-bottom: 0;
}