-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (102 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
124
body{
font-family: 'Roboto', sans-serif;
font-weight: 300;
background-color: #274156;
}
.container{
margin-top: 5em;
display: flex;
flex-direction: row;
align-items: center;
}
.rightInfo{
max-width: 50vw;
display: flex;
flex-direction: column;
justify-content: space-around;
margin-left: 10em;
color:#D0CCD0;
}
.leftImage{
max-width: 50vw;
margin-right: 10em;
}
.aboutInfo{
display: flex;
flex-direction: column;
justify-content: space-around;
font-size: 25px;
max-width: 70%;
margin-top: -1em;
margin-bottom: -1em;
}
#header{
font-size: 60px;
}
.strong{
font-weight: 500;
}
button{
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 25px;
color: rgb(255, 255, 255);
background-color: #1C6E8C;
padding: .4em;
padding-left: 1.5em;
padding-right: 1.5em;
border-color: #D0CCD0;
border-radius: 5px;
margin-top: 3em;
}
/* button:hover{
cursor: pointer;
} */
button:hover, i:hover{
cursor: pointer;
}
a{
color: inherit;
}
.icons{
margin-top: 3em;
}
i{
margin-right: 30px;
}
#image{
max-width: 100%;
margin-top: 10em;
}
/* tablets */
@media only screen and (max-width: 1200px){
.leftImage{
display: none;
}
.rightInfo{
max-width: 100vw;
}
}
/* phones */
@media only screen and (max-width: 600px){
#header{
font-size: 40px;
}
.rightInfo{
max-width: 100vw;
margin-left: 3em;
font-size: 12.5px;
}
.aboutInfo{
font-size: 20px;
}
.container{
margin-top: 0em;
}
button{
font-size: 20px;
}
i{
margin-right: 20px;
}
}