-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02.styles.css
110 lines (105 loc) · 1.77 KB
/
02.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
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
*{
font-family:monospace;
}
body{
margin:0;
background-color:aliceblue;
font-size:20px;
}
header{
height:100vh;
color:white;
background-color:#2196F3;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap:wrap;
}
h1{
font-size:50px;
color:blue;
}
header h1{
text-align: center;
color:white;
}
.button{
margin:15px;
height:40px;
width:140px;
border:none;
border-radius:10px;
cursor:pointer;
}
.button:hover{
color:white;
background-color: darkblue ;
}
img{
height:200px;
}
main{
padding:20px;
}
section{
height:100vh;
border: 1px solid grey;
border-radius: 20px;
padding:5px;
margin-bottom:20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
a{
text-decoration:none;
}
section div p{
text-align: left;
}
ol li{
font-size:20px;
}
form div{
margin:5px 0;
}
.submit{
height:40px;
width:140px;
border:none;
border-radius:10px;
cursor:pointer;
color:white;
background-color:#2196F3;
}
.submit:hover{
background-color:#1172c1;
}
input{
border-radius:5px;
border: 1px solid lightgrey;
height:25px;
}
.fixedbutton{
position:fixed;
bottom:10px;
right:10px;
height:70px;
width:70px;
border:none;
border-radius:50%;
cursor:pointer;
color:white;
background-color:#2196F3;
}
footer{
height:123px;
background-color:black;
color:lightgray;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}