-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
46 lines (46 loc) · 855 Bytes
/
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
/* font-family: 'Quicksand', sans-serif;
COLORS
light-yellow - #f7e4bf;
light-blue - #78a7c6;
dark-blue - #134d71;
white - #ffffff;
black - #000000;
*/
html{
height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat:no-repeat;
background: linear-gradient(180deg, #134d71 10%, #f7e4bf 90%);
}
body{
display:flex;
justify-content: center;
text-align: center;
font-family: Quicksand;
}
.divBoxStyle{
border-radius:1.5mm;
background-color: white;
}
.menu{
width : 60%;
margin: 0 auto;
}
.output{
width : 80%;
margin: 0 auto;
font-family: sans-serif;
}
.main{
width:100%;
display:flex;
justify-content: center;
text-align:center;
flex-direction: column;
}
.whiteText{
color:white;
}