-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
151 lines (121 loc) · 2.57 KB
/
styles.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
139
140
141
142
143
144
145
146
147
148
149
150
body {
margin: 0;
padding: 1%;
font-family: 'Work-Sans' , sans-serif;
font-weight:300;
background-color: rgb(149, 172, 149);
}
h4 {
font-family: 'Work-Sans' , sans-serif;
color: rgb(40, 61, 40);
}
h1 {
text-align: center;
color: rgb(40, 61, 40);
}
.form {
position: absolute;
top: 50%;
margin-top: -15%;
width: 90%;
height: 22%;
padding: 1%;
font-family: 'Work-Sans' , sans-serif;
display: inline-block;
}
.form .label {
font-family: 'Work-Sans' , sans-serif;
display: inline-block;
width: 15%;
text-align: left;
color:rgb(40, 61, 40);
}
.form .text {
font-family: 'Work-Sans' , sans-serif;
display: inline-block;
width: 50%;
text-align: left;
border: transparent;
color: rgb(40, 61, 40);
}
.btn {
box-shadow: 0px 5px 7px -3px #276873;
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
background-color:#599bb3;
border-radius:3px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size: 12px;
font-weight:bold;
padding:10px 10px;
text-decoration:none;
text-shadow:0px 1px 0px #3d768a;
position: absolute;
}
.pageDiv {
position: absolute;
top: 70%;
left: 5%;
width: 100%;
font-family: 'Work-Sans' , sans-serif;
display: inline-block;
}
.container {
position: relative;
/*text-align: center;
color: white;*/
max-width: 33%;
float:left;
padding: 1%;
}
.container img {
display:block;
max-width: 100%;
border-radius: 50px;
background-position: left top;
background-repeat: repeat;
padding: 20px;
width: 500px;
height: 500px;
}
/* Bottom left text */
.container .bottom-left {
text-align: center;
width:90%;
font-size: 25px;
color:white;
position:absolute;
word-wrap: break-word;
bottom:20%;
padding: 5%;
font-weight: bold;
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
}
/* Top left text */
.container .top-left {
text-align: center;
width:90%;
font-size: 25px;
color:white;
position:absolute;
padding: 5%;
top:10%;
word-wrap: break-word;
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
}
.delete {
position:absolute;
display: none;
opacity:0;
top:5%;
left:80%;
}
.container .delete:hover{
display:block;
opacity: 1;
}
.container:hover img {
opacity: 0.5;
}