-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (109 loc) · 2.71 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
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Nov 8, 2016, 9:06:16 PM
Author : Safoine
*/
html{
height:100%;
}
H1{
font-family:'comic sans ms';
color: #D50000;
}
body{
width:auto;
height:auto;
margin:auto;
background-image: url("images/meme.jpg");
background-color: blue;
background-size: 100% 100%;
background-repeat: no-repeat;
font-family: 'Open Sans', sans-serif;
text-align: center;
}
#input{
width:90%;
font-size:21px;
padding:15px 20px 15px 20px;
outline:0;
border:none;
border-color:transparent;
font-family: 'Open Sans', sans-serif;
box-shadow: 0px 2px 2px 1px rgba(0,0,0,.2);
color:#64DD17;
}
.img {
border-radius: 100%;
height : 250px;
width : 250px;
border: 3px solid #73AD21;
}
.left-img-container {
max-width: 313px;
height: 600px;
position: absolute;
top: 10px;
right: 10px;
z-index: -9999;
}
#controls{
margin:20px;
}
div#personName {
font-size: 30px;
font-family: fantasy;
text-decoration: blink;
color: darkgoldenrod;
}
div#personDesc {
font-size: 16px;
font-family: 'Times new roman';
font-weight: bold;
text-decoration: blink;
color: white;
}
div#keepo {
width: 500px;
height: 550px;
position:absolute; /*it can be fixed too*/
left:0; right:0;
top:0; bottom:0;
margin:auto;
/*this to solve "the content will not be cut when the window is smaller than the content": */
max-width:100%;
max-height:100%;
overflow:auto;
}
#text{
font-family: 'Open Sans';
color: rgb(4, 198, 210);
background-color: rgb(255, 255, 255);
}
#question{
font-size: xx-large;
}
#controls input {
border : solid 2px #ffffff;
width: 150px;
height: :40px;
border-radius : 3px;
moz-border-radius : 3px;
-webkit-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
box-shadow : 0px 0px 5px rgba(0,0,0,1.0);
font-size : 20px;
color : #000000;
padding : 1px 10px;
background : #053494;
background : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#053494), color-stop(100%,#addbff));
background : -moz-linear-gradient(top, #053494 0%, #addbff 100%);
background : -webkit-linear-gradient(top, #053494 0%, #addbff 100%);
background : -o-linear-gradient(top, #053494 0%, #addbff 100%);
background : -ms-linear-gradient(top, #053494 0%, #addbff 100%);
background : linear-gradient(top, #053494 0%, #addbff 100%);
filter : progid:DXImageTransform.Microsoft.gradient( startColorstr='#053494', endColorstr='#addbff',GradientType=0 );
}