-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
131 lines (93 loc) · 1.8 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
/*-------------> COLOURS_
dark purple #202040
purple #543864
salmon orange #ff6363
mellow yellow #ffbd69
vibrant yellow #ffd31d
yellow #ffb400
really pale yellow #fffbe0
blue #2994b2
black #474744
dark blue #120136
blue #035aa6
light blue #40bad5
yellow #fcbf1e
PASTELS
purple #726a95
blue #709fb0
green #a0c1b8
yellow #f4ebc1
green veraman #3c9099
green #5fbdb0
yellow #e3e2c3
yellow white #f0efe2
*/
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background-color: #5fbdb0;
/*background: repeating-linear-gradient(#5fbdb0, #5fbdb0 20px, #3c9099 20px, #3c9099 21px);*/
/* background-image: repeating-linear-gradient(to bottom,
rgb(26,198,204),
rgb(26,198,204) 7%,
rgb(100,100,100) 10%);*/
background-size: 100%;
margin: 0;
padding: 0;
font-size: 15px;
line-height: 1.5;
}
.typing {
display: block;
color: #f0efe2;
font-size: 35px;
/*font-family: 'Comfortaa', cursive;*/
/*font-family: 'Balsamiq Sans', cursive;*/
font-family: 'Source Code Pro', monospace;
text-align: center;
font-weight: bolder;
width: 50%;
margin: auto;
margin-top: 110px;
padding: 0;
}
.subtitle {
display: block;
color: #f0efe2;
font-size: 15px;
/*font-family: 'Comfortaa', cursive;*/
/*font-family: 'Balsamiq Sans', cursive;*/
font-family: 'Source Code Pro', monospace;
text-align: center;
font-weight: bolder;
width: 50%;
margin: auto;
margin-top: 10px;
padding: 0;
}
img {
display: block;
border: 10px solid #3c9099;
border-radius: 5%;
width: 300px;
margin: auto;
margin-top: 50px;
margin-bottom: 0;
padding: 0;
}
.search_box {
display: block;
margin: auto;
margin-top: 20px;
padding: 0;
}
.submit_btn {
display: block;
margin: auto;
margin-top: 30px;
padding: 10px;
}