-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdekstop-cloud.css
More file actions
139 lines (137 loc) · 2.39 KB
/
Copy pathdekstop-cloud.css
File metadata and controls
139 lines (137 loc) · 2.39 KB
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
/****Header****/
header{
background-color: #fcfcfc;
}
header img{
width: 100px;
margin:0 10px;
}
nav{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
nav a{
color: black;
text-decoration: none;
font-weight: bold;
display: flex;
flex-direction: column;
}
nav a:hover{
color: #fb8b9b;
}
#svg1{
width: 20px;
color: #fb8b9b;
align-self: center;
}
#svg1:hover{
color: black;
}
input[type=text] {
background-color: #fb8b9b;
color: #fdc5c8;
margin: auto;
padding: 15px ;
font-size: 1em;
border:2px solid #fb8b9b;
width: 98%;
}
main > h3{
font-size: 1.8em;
font-weight: bold;
text-align: center;
border-top: 2px dotted gray;
border-left: 2px dotted gray;
border-right: 2px dotted gray;
margin: 40px 70px;
padding: 30px 0;
}
main > p {
text-align: left;
margin: 0 80px;
color: gray;
}
article{
border-left: 1px dotted gray;
border-right: 1px dotted gray;
border-bottom: 1px dotted gray;
width: 300px;
}
.h2 {
background-color: #213e4e;
color: white;
font-size: 1.8em;
font-weight: bold;
text-align: center;
padding: 20px 0;
}
article p ,ul{
color: gray;
}
article > h3 {
text-align: center;
font-size: 1.2em;
font-weight: bold;
}
article > h2{
background-color: #fb8b9b;
text-align: center;
font-weight: bold;
padding: 10px 0;
margin-left: 5px;
margin-right: 5px;
}
article a{
color: white;
text-decoration: none;
}
section{
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 40px 60px;
}
/*****FOOTER******/
footer{
background-color: #213e4e;
text-align: center;
padding: 30px;
}
footer div{
display: flex;
justify-content: space-around;
}
footer a{
color: white;
text-decoration: none;
font-weight: bold;
}
footer img{
width: 50px;
margin-top: 30px;
}
footer p{
color: white;
}
@media only screen and (min-width : 768px) and (max-width : 1024px) {
nav{
display: flex;
flex-direction: column;
justify-content: space-between;
}
main section{
display: flex;
flex-direction: column;
}
article{
border: 1px dotted gray;
width: 640px;
}
footer div{
display: flex;
flex-direction: column;
}
}