-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
126 lines (94 loc) · 1.96 KB
/
index.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
125
126
* {
padding: 0;
margin: 0;
}
body{
background-color: rgb(255, 227, 176);
}
header{
/* padding: 20px; */
display: flex;
justify-content: space-between;
background-color: wheat;
align-items: center;
border-bottom: 4px solid rgb(103, 24, 24);
color: rgb(103, 24, 24);
padding-right: 40px;
/* box-shadow: 0 15px 15px 0 black; */
padding-left: 15px;
}
header ul{
display: flex;
list-style-type: none;
align-items: center;
}
header ul li{
display: flex;
align-items: center;
margin: 2rem 1.5rem 2rem 0;
}
header ul li a{
cursor: pointer;
color: rgb(103, 24, 24);
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
}
header ul li a:hover{
font-size: larger;
color: white;
}
/* .quote{
font-size: 50px;
} */
.text{
display: grid;
grid-template-columns: 2fr 1fr 2fr 3fr;
/* grid-column-gap: 5px; */
margin-top: 5px;
}
.main{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.container{
background-color: wheat;
width: 500px;
padding: 30px;
border-radius: 10px;
font-size: 20px;
text-align: center;
border: 2px solid rgb(103, 24, 24) ;
color: rgb(103, 24, 24);
}
/* .container:hover{
color: white;
font-weight: bolder;
} */
footer{
background-color: rgb(103, 24, 24);
color: wheat;
text-align: center;
border-top: 4px solid wheat;
padding: 20px;
}
footer:hover{
color: white;
}
@media(max-width: 650px){
/* header ul{
display: flex;
flex-direction: column;
} */
header{
display: grid;
padding: 20px;
}
header ul li{
margin: 0.5rem 0.5rem 0.5rem 0;
}
}